Last active
March 13, 2022 22:15
-
-
Save natanfeitosa/d33a9a4010dc9ff276c30cff27ae6c5a 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"> | |
<input type="text" v-model="nome" > | |
<h1>Olá {{ nome }}</h1> | |
</div> | |
<script type="text/javascript"> | |
Vue.createApp({ | |
setup() { | |
const nome = Vue.ref('') | |
return { | |
nome | |
} | |
} | |
}).mount('#app') | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment