mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-05-02 16:06:35 +08:00
20 lines
250 B
Vue
20 lines
250 B
Vue
<template>
|
|
<div>
|
|
<a-card style="" :bordered="false">
|
|
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ACard from 'vue-antd-ui/es/card/Card'
|
|
export default {
|
|
name: 'ArticleList',
|
|
components: {ACard}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|