vue+antd 后台管理框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
325 B

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