父组件给子组件穿值 子组件如何渲染input内容
时间: 2023-11-19 22:04:45 浏览: 60
在子组件中,可以通过props接收父组件传递的值,然后将其绑定到input的value属性上,从而渲染出对应的内容。示例代码如下:
```javascript
// 父组件
<template>
<ChildComponent :inputValue="inputValue" />
</template>
<script>
import ChildComponent from './ChildComponent.vue'
export default {
components: {
ChildComponent
},
data() {
return {
inputValue: 'hello world'
}
}
}
</script>
// 子组件
<template>
<div>
<input type="text" :value="inputValue" />
</div>
</template>
<script>
export default {
props: {
inputValue: {
type: String,
default: ''
}
}
}
</script>
```
阅读全文