Skip to content

Instantly share code, notes, and snippets.

@victorvzn
Created March 20, 2019 15:42
Show Gist options
  • Save victorvzn/8bf056a8163b2cc162ea50cea0a83250 to your computer and use it in GitHub Desktop.
Save victorvzn/8bf056a8163b2cc162ea50cea0a83250 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue.js - Demo 01</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