更新记录
1.0.1(2020-07-08) 下载此版本
修复输入框数据清空BUG
1.0.0(2020-04-30) 下载此版本
commentInputView(@onUpdate='onUpdate' :status='isShowCompile' @onConfirm='onConfirm' ) { return []; } }, }, data() { return { isShowCompile: false, } }, methods: { //输入内容 onConfirm(value) { console.log(value); }, //更新输入框的状态 onUpdate(event) { this.isShowCompile = event; } } } <style lang="scss" scoped> </style>平台兼容性
使用方式
template
commentInputView(:isVisible.sync='isVisible' @onConfirm='onConfirm')
script
export default {
components: {
commentInputView
},
props: {
//item数据
datas: {
type: Array,
default: () => {
return [];
}
},
},
data() {
return {
isVisible: false,
}
},
methods: {
//输入内容
onConfirm(value) {
console.log(value);
}
}
}