Skip to content

Instantly share code, notes, and snippets.

@natanfeitosa
Last active March 13, 2022 21:47
Show Gist options
  • Save natanfeitosa/090f6a2bbb4ff8fab9631ed3661e8723 to your computer and use it in GitHub Desktop.
Save natanfeitosa/090f6a2bbb4ff8fab9631ed3661e8723 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<title>Hello World em Vue3</title>
<script type="text/javascript" src="https://unpkg.com/vue@3"></script>
</head>
<body>
<div id="app">
<h1>{{ message }}</h1>
</div>
<script type="text/javascript">
Vue.createApp({
setup() {
return {
message: 'Hello Vue!'
}
}
}).mount('#app')
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment