blob: d2589104a5da2e9b7bb18e06c0532f1a161f68f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script>
import Simple from './simple.vue';
export default {
components: {
Simple,
},
};
</script>
<template>
<simple>
<!-- 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 -->
</simple>
</template>
|