commonMixins.js 506 Bytes
Newer Older
何虹's avatar
何虹 committed
1
//import elementUiMinins from './elementUiMinins'
2
export default {
何虹's avatar
何虹 committed
3
  // mixins:[elementUiMinins],
4 5 6 7 8 9
  props: {
    prop: {
      type: String
    },
    formData: {
      type: Object,
何虹's avatar
何虹 committed
10
      default () {
11 12 13
        return {}
      }
    },
何虹's avatar
何虹 committed
14
    config: {// 配置项目
15
      type: Object,
何虹's avatar
何虹 committed
16
      default () {
何虹's avatar
何虹 committed
17
        return {}
18
      }
何虹's avatar
何虹 committed
19
    },
何虹's avatar
何虹 committed
20
    data: {
何虹's avatar
何虹 committed
21

22 23 24
    },
    elInfo: {
      type: Object,
何虹's avatar
何虹 committed
25
      default () {
26 27 28 29 30 31 32 33 34
        return {}
      }
    },
    value: {},
    disabled: {
      default: false
    }
  }
}