props.js 860 B

123456789101112131415161718192021222324252627282930
  1. import defprops from '../../libs/config/props';
  2. export default {
  3. props: {
  4. // 右边锚点非激活的颜色
  5. inactiveColor: {
  6. type: String,
  7. default: defprops.indexList.inactiveColor
  8. },
  9. // 右边锚点激活的颜色
  10. activeColor: {
  11. type: String,
  12. default: defprops.indexList.activeColor
  13. },
  14. // 索引字符列表,数组形式
  15. indexList: {
  16. type: Array,
  17. default: defprops.indexList.indexList
  18. },
  19. // 是否开启锚点自动吸顶
  20. sticky: {
  21. type: Boolean,
  22. default: defprops.indexList.sticky
  23. },
  24. // 自定义导航栏的高度
  25. customNavHeight: {
  26. type: [String, Number],
  27. default: defprops.indexList.customNavHeight
  28. }
  29. }
  30. }