2017-03-09 9 views

答えて

0

あなたはVUEの構文を使用しているが、weexコンポーネントは、VUE構文の互換性がありません。

VUE構文でカスタムコンポーネントをインポートする方法:

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

    } 
    ...