02.4v-text指令

<body>
    <div id="app">
        <h1> {{ message }}, 李银河 </h1>
        <h2 v-text="message">, 李银河</h2>
        <!-- v-text一般很少用到  没有mustache语法{{}} 灵活  在标签里写上v-text指令和其他文本后  这个指令里的内容
        会覆盖 其他文本
        
        -->
    </div>
    <script src='https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js'></script>
    <script>
        const app = new Vue({
            el: '#app',
            data: {
                message: "你好啊"
            }
        })
    </script>
</body>

 

posted @ 2020-12-28 21:15  闭上耳朵  阅读(149)  评论(0编辑  收藏  举报