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