๐Ÿ“ฆ vuetifyjs / theme-vite-free

๐Ÿ“„ main.js ยท 21 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21/**
 * main.js
 *
 * Bootstraps Vuetify and other plugins then mounts the App`
 */

// Composables
import { createApp } from 'vue'

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

// Components
import App from './App.vue'

const app = createApp(App)

registerPlugins(app)

app.mount('#app')