v-pre — skip compilation. v-cloak — hide until compiled.
v-pre:
1<template>2 <!-- Skips Vue compilation -->3 <div v-pre>{{ this will not be compiled }}</div>45 <!-- Good for static content -->6 <code v-pre>{{ literal }}</code>7</template>
v-cloak:
1<template>2 <div v-cloak>3 <p>{{ message }}</p>4 </div>5</template>67<style>8[v-cloak] {9 display: none;10}11</style>