1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-01 13:43:18 +00:00
Nuxt/test/fixtures/basic/layouts/with-props.vue

11 lines
133 B
Vue

<template>
<p>{{ someProp }}</p>
<slot />
</template>
<script lang="ts" setup>
defineProps<{
someProp: string;
}>()
</script>