| 123456789101112131415161718192021 |
- /**
- * main.js
- *
- * Bootstraps Vuetify and other plugins then mounts the App`
- */
- // Components
- import App from './App.vue'
- // Composables
- import { createApp } from 'vue'
- // Plugins
- import { registerPlugins } from '@/plugins'
- import './main.less'
- const app = createApp(App)
- registerPlugins(app)
- app.mount('#app')
|