dashboard
repositories
filestore
activity
search
login
交易所
/
jxjys-h5
吉星交易所-h5
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2026-01-09
6a39094090bb96721acd11941d84c84336faefd0
[交易所/jxjys-h5.git]
/
src
/
main.ts
1
2
3
4
5
6
7
8
9
10
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
import './styles/main.scss'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')