vue——自动化组件

陈开宇
2023-12-01
<!-- 不同条件,使用不同的组件 -->
<component v-bind:is="markTool"></component>
const toolMapper = {
  0: ImageClassify,
  1: ImageDraw,
  2: VoiceLabel,
  4: VideoClassify,
  7: TextClassify
}

computed: {
  markTool () {
    return toolMapper[this.typeCode]
  }
}
 类似资料: