123456789101112131415161718192021222324252627282930313233343536373839 |
- export default {
- props: {
-
- color: {
- type: String,
- default: uni.$u.props.link.color
- },
-
- fontSize: {
- type: [String, Number],
- default: uni.$u.props.link.fontSize
- },
-
- underLine: {
- type: Boolean,
- default: uni.$u.props.link.underLine
- },
-
- href: {
- type: String,
- default: uni.$u.props.link.href
- },
-
- mpTips: {
- type: String,
- default: uni.$u.props.link.mpTips
- },
-
- lineColor: {
- type: String,
- default: uni.$u.props.link.lineColor
- },
-
- text: {
- type: String,
- default: uni.$u.props.link.text
- }
- }
- }
|