如何实现v-model

<template>
  <input type="text" :value="text" @input="$emit('change', $event.target.value)" />
</template>
<script>
export default {
  props: {
    text: String
  },
  model: {
    prop: 'text',
    event: 'change'
  }
}
</script>

results matching ""

    No results matching ""