mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-06-17 11:07: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 },
|
||||
left: { 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 },
|
||||
format: {
|
||||
type: String,
|
||||
|
@ -116,7 +116,7 @@ limitations under the License. -->
|
||||
const datepicker = ref(null);
|
||||
const { t } = useI18n();
|
||||
const show = ref<boolean>(false);
|
||||
const dates = ref<Date | string[] | any>([]);
|
||||
const dates = ref<Date[]>([]);
|
||||
const props = defineProps({
|
||||
position: { type: String, default: "bottom" },
|
||||
name: [String],
|
||||
|
Loading…
Reference in New Issue
Block a user