diff --git a/views/src/components/shell/shell.vue b/views/src/components/shell/shell.vue new file mode 100644 index 0000000..582b7e0 --- /dev/null +++ b/views/src/components/shell/shell.vue @@ -0,0 +1,38 @@ + + + diff --git a/views/src/index.js b/views/src/index.js index ffb8ed2..8b83c8b 100644 --- a/views/src/index.js +++ b/views/src/index.js @@ -1,5 +1,5 @@ import Vue from "vue"; -import App from "./components/App.vue"; +import Shell from "./components/shell/shell.vue"; import { BootstrapVue, IconsPlugin } from "bootstrap-vue"; Vue.config.productionTip = false; @@ -12,5 +12,5 @@ Vue.use(IconsPlugin); new Vue({ el: "#app", - render: h => h(App) + render: h => h(Shell) });