思路: 我用了两种方式去体现,一种是用原始js,一种是用vue。
实现计时器。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src='./vue.js'></script>
</head>
<body>
<div id="app">{{content}}</div>
<div>{{content}}</div>;
<script>
// 原始js的方法
// var dom = docuemnt.getElementById('app');
// dom.innerHTML = 'hello world'
// setTimeout(function() {
// dom.innerHTML = 'bye world'
// }, 2000)
// vue.js的使用
var app = new Vue({
el: '#app',
data: {
content: 'hello world'
}
})
setTimeout(function() {
app.$data.content = 'bye world'
}, 2000)
</script>
</body>
</html>