Skip to content

Instantly share code, notes, and snippets.

@earth774
Created March 17, 2019 15:00
Show Gist options
  • Select an option

  • Save earth774/2d5cb1105e62d73697f1df99003e6023 to your computer and use it in GitHub Desktop.

Select an option

Save earth774/2d5cb1105e62d73697f1df99003e6023 to your computer and use it in GitHub Desktop.
vue Declarative Rendering
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Amiearth</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></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