Level 47
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
//mode: 'history', // this line is not needed, delete it
history: createWebHistory(),
routes
})
and , where is your routes?? something like
const routes = [
{
path: '/',
component: () => import('./home.vue')
}
]
1 like