- Adds basic project structure for Tauri and Vue - Configures the Vite, TypeScript, and Vuetify environments - Implements basic spray-on components and Rust backend logic - Sets up routing, plugins, and the style system
24 lines
331 B
TypeScript
24 lines
331 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'
|
|
|
|
// Styles
|
|
import 'unfonts.css'
|
|
|
|
const app = createApp(App)
|
|
|
|
registerPlugins(app)
|
|
|
|
app.mount('#app')
|