1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-06-17 12:29:01 +08:00

Compare commits

..

No commits in common. "00f3d51c1dc779547a1feef7848aa9e746a2e212" and "204a7b3a9b1513433aeebbe5973b015d252d7506" have entirely different histories.

2 changed files with 6 additions and 3 deletions

View File

@ -21,7 +21,7 @@
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
"source.fixAll.eslint": true
},
"files.associations": {
"*.env.*": "dotenv",

View File

@ -12,10 +12,13 @@ import { setupNaiveDiscreteApi } from './utils'
async function setupApp() {
const app = createApp(App)
setupStore(app)
await setupRouter(app)
app.mount('#app')
setupNaiveDiscreteApi()
await setupRouter(app)
app.mount('#app')
}
setupApp()