dataease-dm/frontend/src/App.vue

19 lines
312 B
Vue
Raw Normal View History

2021-03-03 15:06:52 +08:00
<template>
<div id="app">
<router-view />
2021-10-31 02:01:52 +08:00
<plugin-com v-show="false" ref="de-theme" component-name="ThemeSetting" />
2021-03-03 15:06:52 +08:00
</div>
</template>
<script>
2021-10-31 02:01:52 +08:00
import PluginCom from '@/views/system/plugin/PluginCom'
2021-10-22 15:06:50 +08:00
2021-03-03 15:06:52 +08:00
export default {
2021-10-08 17:22:21 +08:00
name: 'App',
2021-10-31 02:01:52 +08:00
components: { PluginCom },
2021-10-08 17:22:21 +08:00
beforeCreate() {
2021-10-22 15:06:50 +08:00
2021-10-08 17:22:21 +08:00
}
2021-03-03 15:06:52 +08:00
}
</script>