diff options
Diffstat (limited to 'packages/integrations/react/test/fixtures/react-component/src/components/Goodbye.vue')
-rw-r--r-- | packages/integrations/react/test/fixtures/react-component/src/components/Goodbye.vue | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/integrations/react/test/fixtures/react-component/src/components/Goodbye.vue b/packages/integrations/react/test/fixtures/react-component/src/components/Goodbye.vue new file mode 100644 index 000000000..430dfdb71 --- /dev/null +++ b/packages/integrations/react/test/fixtures/react-component/src/components/Goodbye.vue @@ -0,0 +1,11 @@ +<template> + <h2 id="vue-h2">Hasta la vista, {{ name }}</h2> +</template> + +<script> +export default { + props: { + name: String, + }, +}; +</script> |