All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m49s
- 为常见问题&文档资料页面添加分类筛选功能 - 调整markdown中的表格渲染样式
13 lines
264 B
Vue
13 lines
264 B
Vue
<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>
|