Skip to content

Instantly share code, notes, and snippets.

@DeaVenditama
Created October 21, 2020 14:53
Show Gist options
  • Save DeaVenditama/a375468b614e0d04b25deef504204eab to your computer and use it in GitHub Desktop.
Save DeaVenditama/a375468b614e0d04b25deef504204eab to your computer and use it in GitHub Desktop.
<template>
<h1>Penggunaan V Model</h1>
<h4>{{ messages }}</h4>
<input v-model="messages" />
</template>
<script>
export default {
data(){
return{
messages : ''
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment