HelloVue
===
课程代码:[https://github.com/dollarkillerx/3-hours-speed-entry-vue](https://github.com/dollarkillerx/3-hours-speed-entry-vue)
### 老规矩,HelloWorld
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HelloWorld</title>
<script src="https://cdn.bootcss.com/vue/2.6.10/vue.min.js"></script>
</head>
<body>
<div id="app">
{{hello}} // 数据绑定
</div>
<script>
new Vue({ // 创建实例
el:"#app", // 绑定
data:{ // 数据
"hello":"Hello World"
}
})
</script>
</body>
</html>
~~~