page-header.mjs 518 B

12345678910111213141516171819202122
  1. import '../../../utils/index.mjs';
  2. import { Back } from '@element-plus/icons-vue';
  3. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  4. import { iconPropType } from '../../../utils/vue/icon.mjs';
  5. const pageHeaderProps = buildProps({
  6. icon: {
  7. type: iconPropType,
  8. default: () => Back
  9. },
  10. title: String,
  11. content: {
  12. type: String,
  13. default: ""
  14. }
  15. });
  16. const pageHeaderEmits = {
  17. back: () => true
  18. };
  19. export { pageHeaderEmits, pageHeaderProps };
  20. //# sourceMappingURL=page-header.mjs.map