weex模块weed-components使用错误

时间:2017-03-09 10:17:24

标签: weex

我们使用weex install project.import weed-components模块。如何导入杂草成分?

enter image description here

当前错误消息:

enter image description here

1 个答案:

答案 0 :(得分:0)

您正在使用vue语法,但weex-components与vue语法不兼容。

如何使用vue语法导入自定义组件:

  export default {
    components: {
      button: require('./button.vue'), //your custom component

    }
   ...