美文网首页
v-text&v-html

v-text&v-html

作者: 琪33 | 来源:发表于2018-04-27 15:00 被阅读0次
    <!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">
        <title>v-text&v-html 实例</title>
        <script type="text/javascript" src="../assets/js/vue.js"></script>
    </head>
    <body>
        <h1>v-text&v-html 实例</h1>
        <hr>
        <div id="app">
            <span>{{message}}</span>=<span v-text="message"></span>
            <span v-html="dodo"></span>
        </div>
    
        <script type="text/javascript">
            var app = new Vue({
                el:'#app',
                data:{
                    message:'hello world!',
                    dodo:<h2>hellow world</h2>
                }
            })
        </script>
        
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:v-text&v-html

          本文链接:https://www.haomeiwen.com/subject/nqnblftx.html