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