-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Add failing tests for shallowMount issue with dynamic components
- Loading branch information
Charles Hudson
committed
Feb 14, 2022
1 parent
67a3e7a
commit 254bd9e
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<template> | ||
<component :is="Hello" /> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { computed } from 'vue' | ||
import Hello from './Hello.vue' | ||
import ComponentWithChildren from './ComponentWithChildren.vue' | ||
interface Props { | ||
isHello?: boolean | ||
} | ||
const props = defineProps<Props>() | ||
const computedProperty = computed(() => { | ||
return props.isHello ? Hello : ComponentWithChildren | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters