component.scheme.js 278 B

123456789101112131415161718
  1. export const propsScheme = {
  2. modelValue: {
  3. type: [String, Number],
  4. intro: 'input框输入值'
  5. }
  6. }
  7. export const slotsScheme = {
  8. input: {
  9. cbVar: 'modelValue、updateModelValue、effective'
  10. }
  11. }
  12. export const componentScheme = {
  13. propsScheme,
  14. slotsScheme
  15. }