【发布时间】:2021-04-22 07:07:26
【问题描述】:
我刚开始学习 Vuejs,在我需要使用的单个文件组件中,有一个我不太清楚的结构:
<template>
<component :is="user === undefined ? 'div' : 'card'">
...some code
</component>
</template>
在什么情况下有用?为什么我们不能改用<div>?
我在这里问这个问题是因为每次我用谷歌搜索 Vue component tag 我都会得到关于组件本身的信息,而没有任何标签相关的信息。
【问题讨论】:
标签: vue.js vue-component