Skip to content

Instantly share code, notes, and snippets.

@chrisvfritz
Created June 9, 2017 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chrisvfritz/7f8d7d63000b48493c336e48b3db3e52 to your computer and use it in GitHub Desktop.
Save chrisvfritz/7f8d7d63000b48493c336e48b3db3e52 to your computer and use it in GitHub Desktop.
Starting template for a very simple Vue app
<!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