20 lines
259 B
Vue
20 lines
259 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<a-card style="" :bordered="false">
|
||
|
|
ccc
|
||
|
|
</a-card>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import ACard from 'vue-antd-ui/es/card/Card'
|
||
|
|
export default {
|
||
|
|
name: 'ProjectList',
|
||
|
|
components: {ACard}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|