Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Oct 30, 2020
1 parent a759bd5 commit ed77808
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default Vue.extend({
type: Function as PropType<() => void>
},
arr: Array as PropType<string[]>,
darkMode: { type: Boolean, default: false }
camelCase: { type: Boolean, default: false }
}
});
</script>
3 changes: 2 additions & 1 deletion test/vue3/fixture/diagnostics/propTypeValidation/TSChild.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export default defineComponent({
callback: {
type: Function as PropType<() => void>
},
arr: Array as PropType<string[]>
arr: Array as PropType<string[]>,
camelCase: { type: Boolean, default: false }
}
});
</script>

0 comments on commit ed77808

Please sign in to comment.