其他指令

v-pre v-cloak v-once

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title>Document</title>

</head>
<body>
<div id="app">
<!-- v-pre 原样输出,不渲染-->
<p v-pre>{{message}}</p>
<!-- v-cloak 页面加载完才显示,一般速度很快看不出来变化 -->
<p v-cloak>页面加载完显示</p>
<!-- v-once 只渲染一次 -->
<p v-once>{{mes}}</p>
<input type="text" v-model="mes" />
<p>{{mes}}</p>
</div>

<script>
new Vue({
el:'#app',
data: {
message:'hello',
mes:'hello'//这个值决定了初始的值是什么
}

});
</script>

</body>
</html>
-------------本文结束感谢您的阅读-------------