diff options
Diffstat (limited to 'viewer/src/plugins/buefy.ts')
-rw-r--r-- | viewer/src/plugins/buefy.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/viewer/src/plugins/buefy.ts b/viewer/src/plugins/buefy.ts index ebdf64e..0f8e16b 100644 --- a/viewer/src/plugins/buefy.ts +++ b/viewer/src/plugins/buefy.ts | |||
@@ -20,13 +20,13 @@ | |||
20 | import Vue from "vue"; | 20 | import Vue from "vue"; |
21 | 21 | ||
22 | // @ts-ignore | 22 | // @ts-ignore |
23 | import Taginput from 'buefy/src/components/taginput'; | 23 | import Taginput from "buefy/src/components/taginput"; |
24 | // @ts-ignore | 24 | // @ts-ignore |
25 | import Loading from 'buefy/src/components/loading'; | 25 | import Loading from "buefy/src/components/loading"; |
26 | // @ts-ignore | 26 | // @ts-ignore |
27 | import Button from 'buefy/src/components/button'; | 27 | import Button from "buefy/src/components/button"; |
28 | // @ts-ignore | 28 | // @ts-ignore |
29 | import SnackBar from 'buefy/src/components/snackbar'; | 29 | import SnackBar from "buefy/src/components/snackbar"; |
30 | 30 | ||
31 | import "@/assets/scss/buefy.scss"; | 31 | import "@/assets/scss/buefy.scss"; |
32 | 32 | ||
@@ -35,8 +35,8 @@ Vue.use(Loading); | |||
35 | Vue.use(Button); | 35 | Vue.use(Button); |
36 | Vue.use(SnackBar); | 36 | Vue.use(SnackBar); |
37 | 37 | ||
38 | declare module 'vue/types/vue' { | 38 | declare module "vue/types/vue" { |
39 | interface Vue { | 39 | interface Vue { |
40 | $buefy: any; | 40 | $buefy: any; |
41 | } | 41 | } |
42 | } | 42 | } |