v-once

up:: Vue Directives This directive allows you to lock in a value at the start:

<p v-once> Starting counter: {{ count }}</p>
<p> Result: {{ count }}</p>

.