mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-04-06 03:57:44 +08:00
22 lines
325 B
Vue
22 lines
325 B
Vue
<template>
|
|
<div>
|
|
<search-form />
|
|
<a-card :bordered="false">
|
|
contentA
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ACard from 'vue-antd-ui/es/card/Card'
|
|
import SearchForm from './SearchForm'
|
|
export default {
|
|
name: 'ArticleList',
|
|
components: {SearchForm, ACard}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|