美文网首页
引入vux报错

引入vux报错

作者: 蜻蜓路过风 | 来源:发表于2018-10-26 16:06 被阅读0次

    出错提示:

    ERROR Failed to compile with 1 errors 18:17:42
    
    error in ./node_modules/_vux@2.9.1@vux/src/components/v-chart/mixin.js
    
    Module parse failed: Unexpected token (18:6)
    You may need an appropriate loader to handle this file type.
    | this.$parent.set(this.chartName, {
    | shape: defaultShapeMap[this.chartName] || '',
    | ...this.$props,
    | ...camelAttrs(this.$attrs)
    | })
    

    解决办法

    vux官方文档提示


    vux官方文档解决方案.png

    即在末尾添加:

    const vuxLoader = require('vux-loader')
    const webpackConfig = module.exports 
    
    module.exports = vuxLoader.merge(webpackConfig, {
      plugins: ['vux-ui']
    })
    

    (记得安装vux-loader

    相关文章

      网友评论

          本文标题:引入vux报错

          本文链接:https://www.haomeiwen.com/subject/sfcltqtx.html