Nuxt/test/fixtures/basic/layouts/with-props.vue

11 lines
133 B
Vue
Raw Normal View History

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