Skip to content

Instantly share code, notes, and snippets.

@natanfeitosa
Last active March 13, 2022 22:15
Show Gist options
  • Save natanfeitosa/d33a9a4010dc9ff276c30cff27ae6c5a to your computer and use it in GitHub Desktop.
Save natanfeitosa/d33a9a4010dc9ff276c30cff27ae6c5a 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">
<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