props

179 阅读1分钟

1.vue3

 defaultProps: {
      type: Object as PropType<{ label: string; children: string }>,
      default: () => ({
        label: 'label',
        children: 'children',
      }),
    },