File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 11
11
<span class =" text-2xl" ># Attach modal</span >
12
12
<base-lorem />
13
13
</vue-final-modal >
14
- <div id =" attach" class =" relative flex justify-center items-center w-full h-64 bg-gray-700" ></div >
14
+ <div
15
+ id =" attach"
16
+ class =" relative flex justify-center items-center w-full h-64 dark:bg-gray-700 border dark:border-gray-700"
17
+ ></div >
15
18
</div >
16
19
</template >
17
20
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div >
3
- <div class =" relative flex justify-center items-center w-full h-64 bg-gray-700" >
3
+ <div
4
+ class =" relative flex justify-center items-center w-full h-64 dark:bg-gray-700 border dark:border-gray-700"
5
+ >
4
6
<base-button @click =" showModal = true" >Attach: false</base-button >
5
7
<vue-final-modal
6
8
v-model =" showModal"
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export default {
65
65
``` js[vue-final-modal.js]
66
66
67
67
68
- import VueFinalModal from 'vue-final-modal/lib/VueFinalModal.vue '
68
+ import { VueFinalModal } from 'vue-final-modal/lib'
69
69
70
70
Vue.component('VueFinalModal', VueFinalModal)
71
71
```
Original file line number Diff line number Diff line change 1
1
import Vue from 'vue'
2
- import vfm from '../../lib/index.js '
2
+ import { VueFinalModal } from '../../lib'
3
3
4
- Vue . component ( 'VueFinalModal' , vfm . VueFinalModal )
4
+ Vue . component ( 'VueFinalModal' , VueFinalModal )
You can’t perform that action at this time.
0 commit comments