不让删除
<!DOCTYPE html>
<html>
<head>
<title>hello world</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">{{message}}</div>
<script>
var app = new Vue({
el:'#app',
data:{
message:'hello world'
}
})
setTimeout(function()
{app.$data.message='hello'
},2000)
</script>
</body>
</html>