解决Vue报错:[Vue warn]: Error in nextTick: “NotFoundError: Failed to execute ‘insertBefore‘ on ‘Node‘: T
并不是网上说说的v-if 和 v-show的问题,而是因为是在template
包裹的最外层div
上使用了v-if
、当不渲染时、不符合VUE语法。
问题产生原因
<template>
<div class="text-style" v-if="show1">
惺惺惜惺惺想寻寻1
</div>
<div class="text-style" v-if="show2">
惺惺惜惺惺想寻寻2
</div>
</template>
解决办法
<template>
<div class="text-style" > // 在最外层添加一层 div
<div v-if="show1">
惺惺惜惺惺想寻寻1
</div>
<div v-if="show2">
惺惺惜惺惺想寻寻2
</div>
</div>
</template>
学术交流文章,不做为临床依据,特此声明。发布者:Chu,转转请注明出处:https://www.icu.cn/?p=3632