Skip to content

Instantly share code, notes, and snippets.

@zidom
Created January 25, 2018 12:16
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 zidom/6be4e60ab26537300a0f7bf3f050fcf6 to your computer and use it in GitHub Desktop.
Save zidom/6be4e60ab26537300a0f7bf3f050fcf6 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/podicoz
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.13/vue.min.js"></script>
</head>
<body>
<div id="app"></div>
<script>
new Vue({
el:'#app'
template:'#hello-world-template'
})
</script>
<script type="text/x-template" id="hello-world-template">
<p>Hello hello hello</p>
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment