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/slots_with_same_name.vue')
-rw-r--r--spec/frontend/vue3migration/components/slots_with_same_name.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/frontend/vue3migration/components/slots_with_same_name.vue b/spec/frontend/vue3migration/components/slots_with_same_name.vue
index 37604cd9f6e..f3107f41d8b 100644
--- a/spec/frontend/vue3migration/components/slots_with_same_name.vue
+++ b/spec/frontend/vue3migration/components/slots_with_same_name.vue
@@ -1,14 +1,14 @@
<script>
-import Simple from './simple.vue';
+import SimpleComponent from './simple_component.vue';
export default {
name: 'SlotsWithSameName',
- components: { Simple },
+ components: { SimpleComponent },
};
</script>
<template>
- <simple>
+ <simple-component>
<template v-if="true" #default>{{ $options.name }}</template>
<template v-else #default>{{ $options.name }}</template>
- </simple>
+ </simple-component>
</template>