123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- list: {
- type: Array,
- default: () => defProps.subsection.list
- },
-
- current: {
- type: [String, Number],
- default: () => defProps.subsection.current
- },
-
- activeColor: {
- type: String,
- default: () => defProps.subsection.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: () => defProps.subsection.inactiveColor
- },
-
- mode: {
- type: String,
- default: () => defProps.subsection.mode
- },
-
- fontSize: {
- type: [String, Number],
- default: () => defProps.subsection.fontSize
- },
-
- bold: {
- type: Boolean,
- default: () => defProps.subsection.bold
- },
-
- bgColor: {
- type: String,
- default: () => defProps.subsection.bgColor
- },
-
- keyName: {
- type: String,
- default: () => defProps.subsection.keyName
- }
- }
- })
|