mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
13 lines
280 B
Vue
13 lines
280 B
Vue
<!-- <MyComponent> template -->
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
label: String,
|
|
year: Number,
|
|
});
|
|
</script>
|
|
<template>
|
|
<div data-testid="scoped-slot">
|
|
<slot :text="`Hello ${props.label} from the slot`" :year="props.year"></slot>
|
|
</div>
|
|
</template>
|