第一个Vue程序

来自CloudWiki
Cloud17讨论 | 贡献2021年1月28日 (四) 03:50的版本 (创建页面,内容为“ <nowiki> <!DOCTYPE html> <html> <head> <meta charset="GBK"> <title>Hello Vue.js</title> </head> <body> <!--View--> <div id="app"> <p>{{message}}</p>…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索
<!DOCTYPE html>
<html>
	<head>
		<meta charset="GBK">
		<title>Hello Vue.js</title>
	</head>
	<body>
		<!--View-->
		<div id="app">
			<p>{{message}}</p>
		</div>

		<script src="vue.js"></script>
		<script>
			//Model
			var modelData = {
				message: 'Hello Vue.js!'
			}
			
			//创建一个Vue实例,即ViewModel,它连接View与Model	
			new Vue({
			  el: '#app',  //选项对象的el属性指向View
			  data: modelData  //data属性指向Model
			})
		</script>
	</body>
</html>