diff options
Diffstat (limited to 'src/web/app/init.ts')
| -rw-r--r-- | src/web/app/init.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/app/init.ts b/src/web/app/init.ts index 716fe45e7a..38b74d450d 100644 --- a/src/web/app/init.ts +++ b/src/web/app/init.ts @@ -5,6 +5,7 @@ import Vue from 'vue'; import VueRouter from 'vue-router'; import VModal from 'vue-js-modal'; +import * as TreeView from 'vue-json-tree-view'; import Element from 'element-ui'; import ElementLocaleEn from 'element-ui/lib/locale/lang/en'; import ElementLocaleJa from 'element-ui/lib/locale/lang/ja'; @@ -23,6 +24,7 @@ switch (lang) { Vue.use(VueRouter); Vue.use(VModal); +Vue.use(TreeView); Vue.use(Element, { locale: elementLocale }); // Register global directives |