Browse Source

Fix confirm modal lint

Tusooa Zhu 2 years ago
parent
commit
8a99d129dc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/components/confirm_modal/confirm_modal.vue

+ 2 - 2
src/components/confirm_modal/confirm_modal.vue

@@ -4,13 +4,13 @@
     class="confirm-modal"
     :on-cancel="onCancel"
   >
-    <template v-slot:header>
+    <template #header>
       <span v-text="title" />
     </template>
 
     <slot />
 
-    <template v-slot:footer>
+    <template #footer>
       <button
         class="btn button-default"
         @click.prevent="onAccept"