摘要: 父组件 1 <template> 2 <div> 3 <child ref="mychild"></child> 4 <button @click="parentSetVal("这是新值")">点击</button> 5 </div> 6 </template> 7 <script> 8 impor 阅读全文
posted @ 2019-11-18 18:28 幻世魔王 阅读(4107) 评论(0) 推荐(0) 编辑
摘要: 1 <script> 2 export default { 3 props: ["lists"], 4 data() { 5 return { 6 isactive: false, 7 actveName: "", 8 selContent: "请选择" 9 }; 10 }, 11 mounted( 阅读全文
posted @ 2019-05-09 18:02 幻世魔王 阅读(3884) 评论(1) 推荐(1) 编辑
摘要: 控制台显示报错 Uncaught TypeError: __WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor (是因为尝试将不是构造器的对象或者变量来作为构造器使用。) 解决办法: 将new Vuex.store中的“stor 阅读全文
posted @ 2019-05-14 10:47 幻世魔王 阅读(8542) 评论(1) 推荐(1) 编辑