子组件一定要写在父组件之前,例如:
//子vue,这里遇到一个坑,那就是子vue一定要写在父vue前面,不然会报错。 Vue.component(‘todo-item‘, { template: $("#languageList").html() }); //使用Vue渲染模板 var vue = new Vue({ el: "#vueContainer", data: { plats: translateConfig.plats,//平台 projects: [] }, methods: { } });
原文地址:https://www.cnblogs.com/subendong/p/9275119.html
时间: 2024-10-12 12:20:08