美文网首页
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

  • vue零基础开发001——hello world

  • Vue:2-2 hello World

    一、 通过