user_audit.js 306 Bytes
Newer Older
孙谢炜's avatar
孙谢炜 committed
1 2 3 4 5 6 7 8 9 10
/**
 * main.js
 *
 * Bootstraps Vuetify and other plugins then mounts the App`
 */

// Plugins
import { registerPlugins } from '@/plugins'

// Components
sunxiwei's avatar
sunxiwei committed
11
import App from './user_audit.vue'
孙谢炜's avatar
孙谢炜 committed
12 13 14 15 16 17 18 19 20

// Composables
import { createApp } from 'vue'

const app = createApp(App)

registerPlugins(app)

app.mount('#app')