Last active
March 31, 2017 09:44
-
-
Save jacky810124/2982d80fe47538309635d55c865c21c3 to your computer and use it in GitHub Desktop.
Learn vue2.0 Day1 Installation Render
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div id="app"> {{ message }} </div> | |
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
<script> | |
const vue = new Vue({ | |
// Vue 的掛載點 | |
el: '#app', | |
// Vue 的 Model ,提供資料的地方 | |
data: { | |
message: 'Hello world!' | |
} | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment