component.scheme.js 339 B

123456789101112131415161718192021
  1. export const propsScheme = {
  2. message: {
  3. type: String,
  4. default: 'loading',
  5. intro: '加载文案'
  6. },
  7. btnName: {
  8. type: String,
  9. default: '退出',
  10. intro: '关闭loading按钮-按钮展示文字'
  11. },
  12. onCancel: {
  13. type: Function,
  14. default: () => {}
  15. }
  16. }
  17. export const componentScheme = {
  18. propsScheme
  19. }