1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00
Files
Pinnacle-OA/ui/src/pages/home/Home.vue
2023-05-19 17:04:42 +08:00

31 lines
553 B
Vue

<template>
<el-row style="width: 100%" :gutter="20">
<el-col :span="12">
<work-card />
</el-col>
<el-col :span="12">
<work-card />
</el-col>
</el-row>
<el-row style="width: 100%" :gutter="20">
<el-col :span="12">
<work-card />
</el-col>
<el-col :span="12">
<work-card />
</el-col>
</el-row>
</template>
<script>
export default {
name: 'HomePage'
}
</script>
<style scoped>
.el-row {
margin-bottom: 20px;
}
</style>