Skip to content

Instantly share code, notes, and snippets.

@nesterone
Created December 13, 2017 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nesterone/a811cdbfa56dc63e27f5b207c15c30a6 to your computer and use it in GitHub Desktop.
Save nesterone/a811cdbfa56dc63e27f5b207c15c30a6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>My first Vue app</title>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
{{ message }}
</div>
<script>
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment