feat: init wechat

This commit is contained in:
yanghao05
2025-04-16 20:58:26 +08:00
parent 92a070cc81
commit 85301c8994
22 changed files with 841 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
import Aura from '@primeuix/themes/aura'
import { createPinia } from 'pinia'
import PrimeVue from 'primevue/config'
import { createApp } from 'vue'
import App from './App.vue'
import { router } from './router'
// Import only the required PrimeVue styles
import 'primeicons/primeicons.css'; // Icons
import './style.css'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(PrimeVue, {
theme: {
preset: Aura
}
})
app.mount('#app')