refactor: 调整components目录

- 将components根据作用范围/可复用性进行分类
This commit is contained in:
2025-10-28 16:01:34 +08:00
parent 8883dc3fcc
commit dc90e1045b
13 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<template>
<el-table :data="rows" border>
<el-table-column v-for="h in headers" :key="h" :prop="h" :label="h" />
</el-table>
</template>
<script setup lang="ts">
defineProps<{
headers: string[];
rows: Record<string, string>[];
}>();
</script>