本文共 430 字,大约阅读时间需要 1 分钟。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
</head>
<body>
<div id="app">
`message`
</div>
<script src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script>
<script>
var exampleData = {
message:'Hello World!'
}
new Vue({
el:"#app",
data:exampleData
});
</script>
</body>
</html>
转载地址:http://vywao.baihongyu.com/