dataease/frontend/src/App.vue
2022-10-11 15:09:32 +08:00

23 lines
334 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>