vue-antd-admin/src/components/list/Search/ApplicationList.vue
2018-08-03 17:58:42 +08:00

22 lines
329 B
Vue

<template>
<div>
<search-form />
<a-card :bordered="false">
contentB
</a-card>
</div>
</template>
<script>
import ACard from 'vue-antd-ui/es/card/Card'
import SearchForm from './SearchForm'
export default {
name: 'ApplicationList',
components: {SearchForm, ACard}
}
</script>
<style scoped>
</style>