Files
cn-rdms-web/src/views/system/user-detail/[id].vue
2026-03-26 20:18:20 +08:00

15 lines
213 B
Vue

<script setup lang="ts">
interface Props {
// eslint-disable-next-line vue/no-unused-properties
id: string;
}
defineProps<Props>();
</script>
<template>
<LookForward />
</template>
<style scoped></style>