diff options
Diffstat (limited to 'test/fixtures/react-component/src/components/Goodbye.vue')
-rw-r--r-- | test/fixtures/react-component/src/components/Goodbye.vue | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/fixtures/react-component/src/components/Goodbye.vue b/test/fixtures/react-component/src/components/Goodbye.vue new file mode 100644 index 000000000..430dfdb71 --- /dev/null +++ b/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> |