gree_leran/node_modules/uview-plus/components/u-index-anchor/props.js

31 lines
868 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import defProps from '../../libs/config/props.js';
export default {
props: {
// 列表锚点文本内容
text: {
type: [String, Number],
default: () => defProps.indexAnchor.text
},
// 列表锚点文字颜色
color: {
type: String,
default: () => defProps.indexAnchor.color
},
// 列表锚点文字大小单位默认px
size: {
type: [String, Number],
default: () => defProps.indexAnchor.size
},
// 列表锚点背景颜色
bgColor: {
type: String,
default: () => defProps.indexAnchor.bgColor
},
// 列表锚点高度单位默认px
height: {
type: [String, Number],
default: () => defProps.indexAnchor.height
}
}
}