summaryrefslogtreecommitdiff
path: root/spec/frontend/vue3migration/components/slot_with_comment.vue
blob: 56bb41e432f434540e22877ee77ec5509058b494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
import Simple from './simple.vue';

export default {
  components: {
    Simple,
  },
};
</script>
<template>
  <simple>
    <template #default>
      <!-- slot comment typical for gitlab-ui, for example -->
      <!-- slot comment typical for gitlab-ui, for example -->
      <slot></slot>
      <!-- slot comment typical for gitlab-ui, for example -->
      <!-- slot comment typical for gitlab-ui, for example -->
    </template>
  </simple>
</template>