12345678910111213141516171819202122232425262728293031 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- text: {
- type: [String, Number],
- default: () => defProps.indexAnchor.text
- },
-
- color: {
- type: String,
- default: () => defProps.indexAnchor.color
- },
-
- size: {
- type: [String, Number],
- default: () => defProps.indexAnchor.size
- },
-
- bgColor: {
- type: String,
- default: () => defProps.indexAnchor.bgColor
- },
-
- height: {
- type: [String, Number],
- default: () => defProps.indexAnchor.height
- }
- }
- })
|