Skip to content

Instantly share code, notes, and snippets.

View anoop-ananthan's full-sized avatar

Anoop.P.A anoop-ananthan

  • Consultant
  • Kochi
  • 08:29 (UTC -12:00)
View GitHub Profile
@anoop-ananthan
anoop-ananthan / gist:ca2dd0b235777ca120742e6537559323
Created October 29, 2019 12:25
Create v-model in custom component
### Create component
SampleComponent.js
```
<template>
<div>
Mango Component:
<input @input="handleInput($event.target.value)" />
</div>
</template>