vue2.* element tabs tab-pane 动态加载组件

一、重要部分 

   1、 注意   :表明模板

 
          
 

   2、content: 'Jbxx'  ,其中 jbxx 是 模板

addTab (targetName, route) {
      let newTabName = ++this.tabIndex + ''
      this.editableTabs.push({
        title: targetName,
        name: newTabName,
        content: 'Jbxx'
      })
      this.editableTabsValue = newTabName
      if (targetName === '基本信息') {
        this.show = true
      } else {
        this.show = false
      }
      // this.$router.push({
      //   path: route
      // })
    }

三、完整代码






 

你可能感兴趣的:(vue,vue,element,ui,tabs,动态添加组件)