ソースを参照

internationnalisation du message dans les alerte

Vincent GUFFON 4 年 前
コミット
ec8f482b3f

+ 1 - 1
components/Layout/Alert/Container.vue

@@ -32,7 +32,7 @@
     position: fixed;
     bottom: 0;
     right: 20px;
-    z-index: 100;
+    z-index: 1000;
   }
 
   .alertContainer > .alertContent {

+ 1 - 1
components/Layout/Alert/Content.vue

@@ -10,7 +10,7 @@
     v-on:mouseover="onMouseOver"
     v-on:mouseout="onMouseOut"
   >
-    {{alert.message}}
+    {{$t(alert.message)}}
   </v-alert>
 </template>