Skip to content

Commit c9db255

Browse files
committed
chore: add test for #3117
1 parent 01f64ee commit c9db255

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<script lang="ts" setup>
2+
import { ref } from 'vue';
3+
4+
const foo = ref('bar');
5+
6+
defineSlots<{
7+
default: {
8+
foo: string;
9+
};
10+
}>();
11+
</script>
12+
13+
<template>
14+
<div>
15+
<slot v-bind="{ foo }" />
16+
</div>
17+
</template>

0 commit comments

Comments
 (0)