Skip to content

Instantly share code, notes, and snippets.

@ErickPetru
Last active June 25, 2017 19:12
Show Gist options
  • Save ErickPetru/dcc4f4f27034a7bb6e5f91023659b7c7 to your computer and use it in GitHub Desktop.
Save ErickPetru/dcc4f4f27034a7bb6e5f91023659b7c7 to your computer and use it in GitHub Desktop.
Meu primeiro aplicativo Vue
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Meu primeiro aplicativo 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: 'Olá Vue!'
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment