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

simple_component.vue « components « vue3migration « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36ff341221fbd2c9661d161e5773518c684c0f73 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
export default {
  name: 'SimpleComponent',
};
</script>
<template>
  <div>
    <slot>{{ $options.name }}</slot>
  </div>
</template>