At vite vue runs the error – Why the error runs – Uncaught SyntaxError: The requested module ‘/src/router/index.js’ does not provide an export named ‘default’ at main.js vue ? What is wrong ?
// main.js
import { createApp } from 'vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap/dist/js/bootstrap.js'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')