在我的一个组件中,模板的某些部分重复两次。
有可能做这样的事吗?
<template>
<div>
<div v-if='value'>
*** code here ***
include 'path_to_file.vue.part'
</div>
<div v-else>
** another code here ***
include 'path_to_file.vue.part'
</div>
</div>
</template>
答案 0 :(得分:0)
答案 1 :(得分:0)
你可以这样替换第二个v-if
:
<template>
<div>
<div v-if='value'>
*** code here ***
include 'path_to_file.vue.part'
</div>
<div v-if='!value'>
** another code here ***
include 'path_to_file.vue.part'
</div>
</div>
</template>