1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- color: {
- type: String,
- default: () => defProps.link.color
- },
-
- fontSize: {
- type: [String, Number],
- default: () => defProps.link.fontSize
- },
-
- underLine: {
- type: Boolean,
- default: () => defProps.link.underLine
- },
-
- href: {
- type: String,
- default: () => defProps.link.href
- },
-
- mpTips: {
- type: String,
- default: () => defProps.link.mpTips
- },
-
- lineColor: {
- type: String,
- default: () => defProps.link.lineColor
- },
-
- text: {
- type: String,
- default: () => defProps.link.text
- }
- }
- })
|