允许使用嵌套模板标签吗?

时间:2019-12-06 09:06:34

标签: vue.js

是否允许在模板内使用模板标记,例如这样。 我必须检查一些值。

<template>
    <div>
        <template v-for="category_field in category_fields">
            <template v-if="category_field.show_type == 'new-row'">
                //and also here can be more nested template tags
            </template>
            <template v-else>
                //and also here can be more nested template tags
            </template>
        </template>
    </div>
</template>
  

我在项目中使用此系统,只是想知道这是正确的方法吗?

1 个答案:

答案 0 :(得分:0)

尝试使用它。 <template>只需要一个孩子。

<template v-for="category_field in category_fields">
<div>
    <template v-if="category_field.show_type == 'new-row'">
        //and also here can be more nested template tags
    </template>
    <template v-else>
        //and also here can be more nested template tags
    </template>
</div>
</template>