소스 검색

internationnalisation du message dans les alerte

Vincent GUFFON 4 년 전
부모
커밋
ec8f482b3f
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      components/Layout/Alert/Container.vue
  2. 1 1
      components/Layout/Alert/Content.vue

+ 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>