报错:Uncaught TypeError: Cannot read properties of undefined (reading ‘use’)
原因:Vue-router版本问题,在vue-router3可在router/index.js中安装router插件,但4不支持
解决:
1、在router/index.js中,导出{createRouter, createWebHistory}两个函数
使用createRouter来创建路由对象
使用createWebHistory函数赋值给history属性,因为是vue-router4所以必须有history属性,否则会报错
Uncaught Error: Provide the “history” option when calling “createRouter()”: https://next.router.vuejs.org/api/#history.
2、然后在main.js文件中安装路由插件
router/index.js文章来源:https://www.toymoban.com/news/detail-539050.html
import {createRouter, createWebHistory} from 'vue-router'
const routes = [
{
path: '/hello',
component: () => import('../components/HelloWorld')
}
]
export default createRouter({
history: createWebHistory(),
routes
})
main.js文章来源地址https://www.toymoban.com/news/detail-539050.html
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')
到了这里,关于Uncaught TypeError: Cannot read properties of undefined (reading ‘use‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!