UNPKG

v-md-editor

Version:

A markdown editor built on Vue

21 lines (20 loc) 332 B
export default { props: { modelValue: { type: String, default: '', }, }, emits: ['update:modelValue'], data() { return { text: this.modelValue, }; }, methods: { handleInput(val) { this.text = val; this.$emit('update:modelValue', val); }, }, };