main.js 320 B

123456789101112131415161718192021
  1. /**
  2. * main.js
  3. *
  4. * Bootstraps Vuetify and other plugins then mounts the App`
  5. */
  6. // Components
  7. import App from './App.vue'
  8. // Composables
  9. import { createApp } from 'vue'
  10. // Plugins
  11. import { registerPlugins } from '@/plugins'
  12. import './main.less'
  13. const app = createApp(App)
  14. registerPlugins(app)
  15. app.mount('#app')