Skip to content

Instantly share code, notes, and snippets.

@rohan-krishna
Created June 16, 2016 18:12
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 rohan-krishna/dc46b4f3c6286a08ed2026abd1fc8595 to your computer and use it in GitHub Desktop.
Save rohan-krishna/dc46b4f3c6286a08ed2026abd1fc8595 to your computer and use it in GitHub Desktop.
Continuation of Vue.js Intro
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue.js</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.24/vue.js"></script>
</head>
<body>
<div id="app"></div>
<script>
new Vue({
el:'#app'
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment