Move brainblast vue app to ui repository

This commit is contained in:
2024-03-16 21:17:43 +00:00
parent ac2fb16703
commit 4c42f15dc6
34 changed files with 8 additions and 0 deletions

9
ui/src/main.js Normal file
View File

@ -0,0 +1,9 @@
import { registerPlugins } from '@/plugins'
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')