bug
jiangping
2023-11-07 64b432916af9c9218ab3f3eca614e26c542142ae
minipro_standard/uni_modules/uview-ui/components/u-index-list/props.js
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,29 @@
export default {
    props: {
        // å³è¾¹é”šç‚¹éžæ¿€æ´»çš„颜色
        inactiveColor: {
            type: String,
            default: uni.$u.props.indexList.inactiveColor
        },
        // å³è¾¹é”šç‚¹æ¿€æ´»çš„颜色
        activeColor: {
            type: String,
            default: uni.$u.props.indexList.activeColor
        },
        // ç´¢å¼•字符列表,数组形式
        indexList: {
            type: Array,
            default: uni.$u.props.indexList.indexList
        },
        // æ˜¯å¦å¼€å¯é”šç‚¹è‡ªåЍ吏顶
        sticky: {
            type: Boolean,
            default: uni.$u.props.indexList.sticky
        },
        // è‡ªå®šä¹‰å¯¼èˆªæ çš„高度
        customNavHeight: {
            type: [String, Number],
            default: uni.$u.props.indexList.customNavHeight
        }
    }
}