dataease-dm/frontend/src/App.vue
2021-11-24 18:49:41 +08:00

19 lines
308 B
Vue

<template>
<div id="app">
<router-view/>
<plugin-com v-show="false" ref="de-theme" component-name="ThemeSetting"/>
</div>
</template>
<script>
import PluginCom from '@/views/system/plugin/PluginCom'
export default {
name: 'App',
components: {PluginCom},
beforeCreate() {
}
}
</script>