Files
mini-yu/uni_modules/tdesign-uniapp/components/footer/props.ts

24 lines
642 B
TypeScript
Raw Normal View History

2026-02-10 08:05:03 +08:00
/* eslint-disable */
/**
* PMC
* */
import type { TdFooterProps } from './type';
export default {
/** 链接列表。name 表示链接名称, url 表示链接 page 路径目前只支持小程序内部跳转openType 表示跳转方式 */
links: {
type: Array,
default: (): TdFooterProps['links'] => [],
},
/** 图标配置。`logo.icon` 表示图标链接地址,`logo.title` 表示标题文本,`logo.url` 表示链接 */
logo: {
type: Object,
},
/** 版权信息 */
text: {
type: String,
default: '',
},
};