mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 23:11:24 +08:00
31 lines
553 B
Vue
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>
|