picker-item-props.js 300 B

12345678910111213141516
  1. /* eslint-disable */
  2. const props = {
  3. /** 数据源 */
  4. options: {
  5. type: Array,
  6. value: [],
  7. },
  8. /** 默认选中的选项 */
  9. value: {
  10. type: String,
  11. optionalTypes: [Number],
  12. },
  13. };
  14. export default props;
  15. //# sourceMappingURL=picker-item-props.js.map