cl-uni
Version:
cool-uni: button、form ...
20 lines (18 loc) • 502 B
JavaScript
import { getParent } from '../utils'
export default {
computed: {
$form() {
return getParent.call(this, "ClForm", [
"labelWidth",
"labelPosition",
"showMessage",
"model",
"validateOnValueChange",
"disabled"
]);
},
isDisabled() {
return this.$form ? (this.$form.disabled || this.disabled) : this.disabled
}
}
}