Uncaught TypeError: Cannot read properties of undefined (rea

时间:2022-11-01
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版本过高
 
上一条:data-参数说明(模态弹出窗的使用) 下一条:没有了

相关文章

最新文章