Files
mini-yu/uni_modules/tdesign-uniapp/components/calendar/template.props.js

58 lines
856 B
JavaScript
Raw Normal View History

2026-02-10 08:05:03 +08:00
export default {
classPrefix: {
type: String,
default: '',
},
usePopup: {
type: Boolean,
},
switchMode: {
type: String,
default: '',
},
tClass: {
type: String,
default: '',
},
customStyle: {
type: [String, Object],
default: '',
},
title: {
type: String,
default: '',
},
realLocalText: {
type: Object,
default: () => ({}),
},
months: {
type: Array,
default: () => ([]),
},
currentMonth: {
type: [Array, Object],
default: () => ([]),
},
actionButtons: {
type: Object,
default: () => ({}),
},
days: {
type: Array,
default: () => ([]),
},
scrollIntoView: {
type: String,
default: '',
},
firstDayOfWeek: {
type: Number,
default: 0,
},
innerConfirmBtn: {
type: [Object, String],
default: '',
},
};