123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- text: {
- type: [Array],
- default: () => defProps.columnNotice.text
- },
-
- icon: {
- type: String,
- default: () => defProps.columnNotice.icon
- },
-
- mode: {
- type: String,
- default: () => defProps.columnNotice.mode
- },
-
- color: {
- type: String,
- default: () => defProps.columnNotice.color
- },
-
- bgColor: {
- type: String,
- default: () => defProps.columnNotice.bgColor
- },
-
- fontSize: {
- type: [String, Number],
- default: () => defProps.columnNotice.fontSize
- },
-
- speed: {
- type: [String, Number],
- default: () => defProps.columnNotice.speed
- },
-
- step: {
- type: Boolean,
- default: () => defProps.columnNotice.step
- },
-
- duration: {
- type: [String, Number],
- default: () => defProps.columnNotice.duration
- },
-
-
- disableTouch: {
- type: Boolean,
- default: () => defProps.columnNotice.disableTouch
- }
- }
- })
|