Last active
March 13, 2022 21:47
-
-
Save natanfeitosa/090f6a2bbb4ff8fab9631ed3661e8723 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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