Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save yejiang1015/88f21b43ce20f46073cec169ee1163ce to your computer and use it in GitHub Desktop.

Select an option

Save yejiang1015/88f21b43ce20f46073cec169ee1163ce to your computer and use it in GitHub Desktop.
<template>
<input type="text" v-model="value2">
</template>
<script>
/**
* @script
*
* @Author: yejiang
* @Date: 2017-10-25
*/
export default {
name: 'v-model',
data() {
return {
value2: this.value
};
},
props: {
value: null
},
watch: {
value2(val) {
this.$emit('input', val);
}
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment