美文网首页
vue零基础开发002——改变hello world

vue零基础开发002——改变hello world

作者: 文朝明 | 来源:发表于2019-11-13 10:54 被阅读0次
    <!DOCTYPE html>
    
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title>hello world</title>
        <script src="./vue.js"></script>
    
    </head>
    <body>
    <div id="app">{{content}}</div>
        <script>
        var app=new Vue({
            el:'#app',
            data:{
                content:'hello world'
            }
        })
        setTimeout(function(){
    app.$data.content="bye world"
    },1000)
        </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:vue零基础开发002——改变hello world

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