5.v-cloack,v-html,v-text,v-once,v-pre用法

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
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>模板</title>
    <script src="js/vue.js"></script>
    <script>
        window.onload = function () {
            let vm = new Vue({
                el: '#itany',
                data: {
                    msg: 'welcome to itany'
                },
                created: function () {
                    alert(111);
                }
            });
        }
    </script>
    <style>
        /* 必须配置css样式,否则不生效 */
        [v-cloak] {
            display: none;
        }
    </style>
</head>
<body>
<div id="itany">
    <input type="text" v-model="msg">

    <h3>aaa<span v-cloak>{{msg}}</span></h3>
   
    <hr>

    <h3 v-text="msg"></h3>

    <h3 v-html="msg"></h3>

    <hr>

    <h3 v-once>{{msg}}</h3>

    <h3 v-pre>{{msg}}</h3>
</div>
</body>
</html>