Files
evolution-manager/src/main.js
Gabriel Pastori 0dcb482258 first commit
2023-10-30 10:31:12 -03:00

21 lines
299 B
JavaScript

/**
* 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'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')