diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-01 09:16:25 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-01 09:16:25 +0900 |
| commit | 6819eb3b4da43665de8e159d774b3f2325ddfe0b (patch) | |
| tree | 6140e6e8ee632d96ee8f12be19e75d76bd0b319f /src/client/app/init.ts | |
| parent | #2541 (diff) | |
| download | sharkey-6819eb3b4da43665de8e159d774b3f2325ddfe0b.tar.gz sharkey-6819eb3b4da43665de8e159d774b3f2325ddfe0b.tar.bz2 sharkey-6819eb3b4da43665de8e159d774b3f2325ddfe0b.zip | |
Improve usability
Diffstat (limited to 'src/client/app/init.ts')
| -rw-r--r-- | src/client/app/init.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/app/init.ts b/src/client/app/init.ts index cf97957400..dd31f07475 100644 --- a/src/client/app/init.ts +++ b/src/client/app/init.ts @@ -11,6 +11,8 @@ import VAnimateCss from 'v-animate-css'; import Element from 'element-ui'; import ElementLocaleEn from 'element-ui/lib/locale/lang/en'; import ElementLocaleJa from 'element-ui/lib/locale/lang/ja'; +import VueThinModal from 'vue-thin-modal'; +import 'vue-thin-modal/dist/vue-thin-modal.css'; import App from './app.vue'; import checkForUpdate from './common/scripts/check-for-update'; @@ -30,6 +32,9 @@ Vue.use(VModal); Vue.use(TreeView); Vue.use(VAnimateCss); Vue.use(Element, { locale: elementLocale }); +Vue.use(VueThinModal, { + autoMountPortal: false +}); // Register global directives require('./common/views/directives'); |