Skip to content

Commit

Permalink
fix(vue): comment out unused defineProps function (#19695)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini authored Oct 18, 2023
1 parent 80ade93 commit 5dd7639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vue/src/generators/component/component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('component', () => {
expect(appTree.read(`${libName}/src/lib/hello/hello.vue`, 'utf-8'))
.toMatchInlineSnapshot(`
"<script setup lang="ts">
defineProps<{}>();
// defineProps<{}>()
</script>
<template>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
defineProps<{}>()
// defineProps<{}>()
</script>

<template>
Expand Down

0 comments on commit 5dd7639

Please sign in to comment.