Skip to content

Instantly share code, notes, and snippets.

@matrunchyk
Last active October 19, 2019 21:40
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 matrunchyk/cbc973f1db9e73e036823da9452eeb9d to your computer and use it in GitHub Desktop.
Save matrunchyk/cbc973f1db9e73e036823da9452eeb9d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Мій перший Vue додаток</title>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
{{ message }}
</div>
<script>
var app = new Vue({
el: '#app',
data: {
message: 'Привіт, Vue!'
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment