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

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