UNPKG

@zhxcloud/cloud-components

Version:

多平台组件库

21 lines (17 loc) 307 B
export default { name: 'SelfItem', props: { value: [String, Number, Boolean], propName: [String, Number] }, data() { return { dataValues: { value: this.value } } }, render() { return this.$scopedSlots.default(this.dataValues) } }