根据vue写出一个表格展示
时间: 2023-07-20 20:43:02 浏览: 77
vue-antd-admin:vue-antd-admin基于vue-cli4 + vuex + ant-design-vue开发的后台管理系统,包括权限管理,布局方式,国际化,动态路由和后台管理系统常用的表格和表单等功能,包含echarts图的各种展示,第一版已完成,有兴趣可以了解下
好的,以下是一个简单的 Vue 表格展示示例:
```html
<template>
<table>
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
</thead>
<tbody>
<tr v-for="person in people" :key="person.id">
<td>{{ person.name }}</td>
<td>{{ person.age }}</td>
<td>{{ person.gender }}</td>
</tr>
</tbody>
</table>
</template>
<script>
export default {
data() {
return {
people: [
{ id: 1, name: '张三', age: 20, gender: '男' },
{ id: 2, name: '李四', age: 25, gender: '女' },
{ id: 3, name: '王五', age: 30, gender: '男' }
]
}
}
}
</script>
```
在上面的示例中,我们使用了 Vue 的 `v-for` 指令来遍历 `people` 数组,并使用 `:key` 绑定每个人的唯一 ID。然后,我们在模板中使用插值语法 `{{ }}` 来显示每个人的姓名、年龄和性别。
阅读全文