Skip to content

Commit de0d259

Browse files
committed
fix(pages): deal with warnings
1 parent 5db6edf commit de0d259

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/client/src/components/Checkbox.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import type { QCheckboxProps } from 'quasar';
1313
1414
interface Props extends QCheckboxProps {
15-
modelValue: boolean;
15+
modelValue: any;
1616
}
1717
1818
defineProps<Props>();

apps/client/src/components/Checklist.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ interface Props extends QListProps {
5757
itemIndex: number,
5858
) => QItemProps & Record<string, unknown>;
5959
60-
itemsWrapper?: string | Component;
60+
itemsWrapper?: string | Component | object;
6161
wrapperProps?: Record<string, unknown>;
6262
wrapperEvents?: Record<string, unknown>;
6363
}

apps/client/src/components/PassthroughComponent.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
import type { Component } from 'vue';
1414
1515
defineProps<{
16-
is?: string | Component;
16+
is?: string | Component | object;
1717
}>();
1818
</script>

0 commit comments

Comments
 (0)