From 87f12d4b5b59cee4c8b02fc2a4c3b49145997a37 Mon Sep 17 00:00:00 2001 From: Pine Wu Date: Fri, 30 Oct 2020 09:45:07 +0800 Subject: [PATCH] Clean up --- .../fixture/diagnostics/propTypeValidation/TSChild.vue | 2 +- test/vue3/fixture/diagnostics/propTypeValidation/TSChild.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/interpolation/fixture/diagnostics/propTypeValidation/TSChild.vue b/test/interpolation/fixture/diagnostics/propTypeValidation/TSChild.vue index b4b71c2e00..32d9b254b3 100644 --- a/test/interpolation/fixture/diagnostics/propTypeValidation/TSChild.vue +++ b/test/interpolation/fixture/diagnostics/propTypeValidation/TSChild.vue @@ -9,7 +9,7 @@ export default Vue.extend({ type: Function as PropType<() => void> }, arr: Array as PropType, - darkMode: { type: Boolean, default: false } + camelCase: { type: Boolean, default: false } } }); diff --git a/test/vue3/fixture/diagnostics/propTypeValidation/TSChild.vue b/test/vue3/fixture/diagnostics/propTypeValidation/TSChild.vue index 93b0ff8d68..d805184359 100644 --- a/test/vue3/fixture/diagnostics/propTypeValidation/TSChild.vue +++ b/test/vue3/fixture/diagnostics/propTypeValidation/TSChild.vue @@ -8,7 +8,8 @@ export default defineComponent({ callback: { type: Function as PropType<() => void> }, - arr: Array as PropType + arr: Array as PropType, + camelCase: { type: Boolean, default: false } } });