Skip to content

Instantly share code, notes, and snippets.

@stardigits
Created July 20, 2018 06:41
Show Gist options
  • Save stardigits/87a29a5c9da0ff0cde3a6233a3ead88c to your computer and use it in GitHub Desktop.
Save stardigits/87a29a5c9da0ff0cde3a6233a3ead88c to your computer and use it in GitHub Desktop.
my-vuejs-gist
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
</head>
<body>
<div id="app">
</div>
</body>
<script>
new Vue({
el: '#app',
data: {
message: 'Hello World!',
}
})
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment