feature: RBAC + Clinical Audit Logging

This commit is contained in:
voltsrage
2026-06-21 15:46:55 +08:00
parent a43db52813
commit 5af6ab490e
83 changed files with 4281 additions and 70 deletions
+8 -1
View File
@@ -3,5 +3,12 @@ import { createPinia } from 'pinia'
import './style.css'
import App from './App.vue'
import router from './router'
import { useAuthStore } from '@/stores/auth'
createApp(App).use(createPinia()).use(router).mount('#app')
const pinia = createPinia()
const app = createApp(App)
app.use(pinia)
useAuthStore(pinia).hydrate()
app.use(router)
app.mount('#app')