摘要:
Vue2.0自定义组件实现v-model vue2.0 子组件只允许有一个 v-model 1. 子组件需要配置model选项,指明v-model的prop以及事件名称 2. 然后子组件用props接收传值,` $emit()` //父组件 <template> <div> <Child v-m 阅读全文
摘要:
import React, { Component, Fragment } from 'react' export class Books extends Component { constructor(props){ super(props) this.state = { inputValue:" 阅读全文