math/ui/src/main.ts

26 lines
383 B
TypeScript

/**
* main.ts
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
// Plugins
import { registerPlugins } from '@/plugins'
// Components
import App from './App.vue'
// Composables
import { createApp } from 'vue'
import { createPinia } from 'pinia';
const app = createApp(App)
const pinia = createPinia();
app.use(pinia);
registerPlugins(app)
app.mount('#app')