Skip to content

Instantly share code, notes, and snippets.

@jacky810124
Last active March 31, 2017 09:44
Show Gist options
  • Save jacky810124/2982d80fe47538309635d55c865c21c3 to your computer and use it in GitHub Desktop.
Save jacky810124/2982d80fe47538309635d55c865c21c3 to your computer and use it in GitHub Desktop.
Learn vue2.0 Day1 Installation Render
<!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