mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
22 lines
329 B
Vue
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>
|