<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>vue-test</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'
        }, 2000)
    </script>
</body>

</html>

 

Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐