UNPKG

iview

Version:

A high quality UI components Library with Vue.js

14 lines 302 B
export default { inject: { FormInstance: { default: '' } }, computed: { itemDisabled () { let state = this.disabled; if (!state && this.FormInstance) state = this.FormInstance.disabled; return state; } } };