Uncaught TypeError: Cannot read properties of undefined (rea

vue页面Uncaught TypeError: Cannot read properties of undefined (reading ‘install’)报错,页面全空白。
然后发现是自己写的指令全局引用的原因

使用了export导出

export { preventReClick }

复制代码

所以引用的时候不能

import preventReClick  from '@/directives'
Vue.use(preventReClick)

复制代码

正确的应该是:

import { preventReClick } from '@/directives'
Vue.use(preventReClick)

复制代码

这里就要注意:
通过export方式导出,在导入(import)时要加花括号{ },export default则不需要花括号{ }。

还有另外一种可能是:vue-router版本过高

你可能感兴趣的