vuedemo01

作者: 知识分享share | 来源:发表于2018-03-29 17:51 被阅读0次
<!DOCTYPE html>
<html lang="zh">
<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>Vue</title>
    <script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
        
    </script>
</head>
<body>
    <div id='app'>
        <p>{{name}}</p>
        <p>{{job}}</p>
        <p>{{greet('afternoon')}}</p>
        <a v-bind:href="website">web开发</a>
        <input type="text" v-bind:value="job" />
        <p v-html="webTag"></p>
    </div>
</body>
</html>

<script>
    new Vue({
        el:"#app",
        data:{
            name:'核心',
            job:'web开发',
            website:'http://www.baidu.com',
            webTag:"<a href='http://www.thenewstep.com'>Thenewstep</a>"
        },
        methods:{
            greet:function(time){
                return 'Good '+time+''+this.name+'!';
            }
        }
    })
</script>

    
    

相关文章

网友评论

      本文标题:vuedemo01

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