1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- props: {
-
- show: {
- type: Boolean,
- default: () => defProps.toolbar.show
- },
-
- cancelText: {
- type: String,
- default: () => defProps.toolbar.cancelText
- },
-
- confirmText: {
- type: String,
- default: () => defProps.toolbar.confirmText
- },
-
- cancelColor: {
- type: String,
- default: () => defProps.toolbar.cancelColor
- },
-
- confirmColor: {
- type: String,
- default: () => defProps.toolbar.confirmColor
- },
-
- title: {
- type: String,
- default: () => defProps.toolbar.title
- },
-
- rightSlot: {
- type: Boolean,
- default: false
- }
- }
- })
|