这是我正在测试的监听器脚本,
<template>
<input <input type="text" name="" :value="prefill">
</template>
<script>
export default {
computed: {
prefill() {
return this.$parent.prefill;
}
}
}
</script>