1.為什么使用component 動態(tài)的添加組件沒有成功,<template><component @showHide="recieveAddData" :is="addModal" ></component> <button @click="switchComponent"></button></template>import modal from './company/modal.vue'export default {name: 'addItem',data () { addModal: 'modal'},methods: { switchComponent () { this.addModal = 'first'},components: { modal, first: { template: "<div>這里是子組件3</div>" }}}為什么組件first是可以動態(tài)的添加上的,為什么引入的modal 組件不行呢?
vue 使用component 動態(tài)組件為什么不成功
慕斯王
2018-11-24 18:14:17