7a34807fa0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import App from './App.vue'
|
|
import router from './router/index.js'
|
|
import './style.css'
|
|
|
|
const app = createApp(App)
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
app.mount('#app')
|