Skip to content

Instantly share code, notes, and snippets.

@jgdovin
Created June 12, 2015 20:08
Show Gist options
  • Save jgdovin/9f27e01d6ea2ebbe4cdb to your computer and use it in GitHub Desktop.
Save jgdovin/9f27e01d6ea2ebbe4cdb to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
</head>
<body>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vue/0.11.10/vue.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<div class="container">
<div id="tasks">
{{ heading }}
</div>
</div>
</body>
</html>
new Vue({
el: '#tasks',
data: {
heading: 'Hello World'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment