e4691c6d66405491de914cfb3025c547e4f5ae801e2aa6f78de48c10acbfdb66253b5aa2c63cd9cfeac53eb0713871602b76ede19c429e32488d4e8cac5c54 401 B

12345678910111213141516
  1. import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
  2. import { mutable } from '../../../utils/typescript.mjs';
  3. const tabBarProps = buildProps({
  4. tabs: {
  5. type: definePropType(Array),
  6. default: () => mutable([])
  7. },
  8. tabRefs: {
  9. type: definePropType(Object),
  10. default: () => mutable({})
  11. }
  12. });
  13. export { tabBarProps };
  14. //# sourceMappingURL=tab-bar.mjs.map