mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-06-30 08:27:34 +00:00
fix type
This commit is contained in:
parent
33c188c326
commit
de2b9a4069
@ -169,7 +169,7 @@ limitations under the License. -->
|
|||||||
value: { type: Date },
|
value: { type: Date },
|
||||||
left: { type: Boolean, default: false },
|
left: { type: Boolean, default: false },
|
||||||
right: { type: Boolean, default: false },
|
right: { type: Boolean, default: false },
|
||||||
dates: { type: Array as PropType<number[] | string[]>, default: () => [] },
|
dates: { type: Array as PropType<Date[]>, default: () => [] },
|
||||||
disabledDate: { type: Function, default: () => false },
|
disabledDate: { type: Function, default: () => false },
|
||||||
format: {
|
format: {
|
||||||
type: String,
|
type: String,
|
||||||
|
@ -116,7 +116,7 @@ limitations under the License. -->
|
|||||||
const datepicker = ref(null);
|
const datepicker = ref(null);
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const show = ref<boolean>(false);
|
const show = ref<boolean>(false);
|
||||||
const dates = ref<Date | string[] | any>([]);
|
const dates = ref<Date[]>([]);
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
position: { type: String, default: "bottom" },
|
position: { type: String, default: "bottom" },
|
||||||
name: [String],
|
name: [String],
|
||||||
|
Loading…
Reference in New Issue
Block a user