v-once 单次渲染
v-once 单次渲染
v-once Demo
<template>
<div style="text-align: center;" id="Application">
<button v-once v-on:click="clickButton">{{ count }}次点击</button>
</div>
</template>
<script>
export default {
data(){
return{
count: 0
}
},
methods: {
clickButton() {
this.count = this.count + 1
}
},
};
</script>