23 lines
346 B
JavaScript
23 lines
346 B
JavaScript
const props = {
|
|
copyright: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
customStyle: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
logo: {
|
|
type: Object,
|
|
},
|
|
textLinkList: {
|
|
type: Array,
|
|
value: [],
|
|
},
|
|
theme: {
|
|
type: String,
|
|
value: 'text',
|
|
},
|
|
};
|
|
export default props;
|