Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/vue3migration/components/simple.vue')
-rw-r--r--spec/frontend/vue3migration/components/simple.vue10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/frontend/vue3migration/components/simple.vue b/spec/frontend/vue3migration/components/simple.vue
deleted file mode 100644
index 1d9854b5b4d..00000000000
--- a/spec/frontend/vue3migration/components/simple.vue
+++ /dev/null
@@ -1,10 +0,0 @@
-<script>
-export default {
- name: 'Simple',
-};
-</script>
-<template>
- <div>
- <slot>{{ $options.name }}</slot>
- </div>
-</template>