You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
342 B
20 lines
342 B
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
|