Vue+Webpack常见问题(持续更新)


常识

1.computed计算属性,使用的属性必需在data里面声明。

computed: {
    canLogin: function(){
        //注意这里的依赖的属性必需在data里面声明
        return this.name && this.password;
    }
}

Webpack问题

1.模块里面使用JSON.stringify和 typeof,报:Uncaught TypeError: Cannot assign to read only property 'exports' of #<Object>

解决方法:把.babelrc里的plugin "transform-runtime" 删掉, 重启运行 

Vue控件问题

1.VueI18n的messages设置无效问题

//messages得单独写出来,不然会报[vue-i18n] Cannot translate the value of keypath “”. Use the value of keypath as default.
const messages = {
  'lang': path.i18n
}
const i18n = new VueI18n({
    locale: 'lang',
    messages
})

new Vue({
    .....
    i18n
})

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM