swagger文档展示开发

This commit is contained in:
暮光:城中城
2021-10-20 22:32:25 +08:00
parent 9267aed477
commit 5cb267fba6
16 changed files with 146 additions and 65 deletions

View File

@@ -0,0 +1,48 @@
<template>
<a-table :dataSource="dataSource" :columns="columns"/>
</template>
<script>
import { ref, onMounted } from 'vue'
export default {
setup() {
onMounted(() => {
console.log('Component is mounted!');
});
return {
dataSource: [
{
key: '1',
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号',
},
{
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
},
],
columns: [
{
title: '姓名',
dataIndex: 'name',
key: 'name',
},
{
title: '年龄',
dataIndex: 'age',
key: 'age',
},
{
title: '住址',
dataIndex: 'address',
key: 'address',
},
],
};
},
};
</script>