16 lines
193 B
Vue
16 lines
193 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
id: string;
|
|
}
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<template>
|
|
<LookForward>
|
|
<p>{{ id }}</p>
|
|
</LookForward>
|
|
</template>
|
|
|
|
<style scoped></style>
|