mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-27 05:36:43 +08:00
14 lines
158 B
Vue
14 lines
158 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
id: string;
|
|
}
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<template>
|
|
<LookForward />
|
|
</template>
|
|
|
|
<style scoped></style>
|