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