element-plus
Version:
A Component Library for Vue 3
20 lines (17 loc) • 342 B
JavaScript
import { Back } from '@element-plus/icons-vue';
const pageHeaderProps = {
icon: {
type: [String, Object],
default: Back
},
title: String,
content: {
type: String,
default: ""
}
};
const pageHeaderEmits = {
back: () => true
};
export { pageHeaderEmits, pageHeaderProps };
//# sourceMappingURL=page-header.mjs.map