first commit
This commit is contained in:
23
uni_modules/tdesign-uniapp/components/footer/props.ts
Normal file
23
uni_modules/tdesign-uniapp/components/footer/props.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
/* 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: '',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user