21 lines
413 B
JavaScript
21 lines
413 B
JavaScript
/**
|
|
* main.js
|
|
*
|
|
* Bootstraps Vuetify and other plugins then mounts the App`
|
|
*/
|
|
|
|
// Plugins
|
|
import { registerPlugins } from '@/plugins'
|
|
//import { registerPlugins } from './plugins/index.js';
|
|
// Components
|
|
import App from './App.vue'
|
|
|
|
// Composables
|
|
import { createApp } from 'vue'
|
|
//import { createApp } from './vue/dist/vue.esm-browser.js'
|
|
const app = createApp(App)
|
|
|
|
registerPlugins(app)
|
|
|
|
app.mount('#app')
|