feat(support): 添加分类筛选的功能
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m49s

- 为常见问题&文档资料页面添加分类筛选功能
- 调整markdown中的表格渲染样式
This commit is contained in:
2025-09-29 16:09:48 +08:00
parent bbb0d71619
commit 56dd57e244
5 changed files with 280 additions and 13 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>