Uncaught TypeError: Cannot read properties of undefined (reading 'use')
时间: 2023-08-17 11:15:31 浏览: 247
10种JavaScript最常见的错误(小结)
这个错误是因为在导入`router`时,使用了错误的语法。正确的导入语法应该是`import router from './router/index'`。[1]另外,根据引用[3]中的代码,这个错误可能是由于使用了Vue3的写法而不是Vue2的写法导致的。在Vue3中,使用`createApp`来创建应用程序实例,并使用`app.use`来注册插件。所以,你需要确保你的代码是基于Vue2的写法,而不是Vue3的写法。
阅读全文