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
22 lines
325 B
7 years ago
|
<template>
|
||
|
<div>
|
||
7 years ago
|
<search-form />
|
||
|
<a-card :bordered="false">
|
||
|
contentC
|
||
7 years ago
|
</a-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import ACard from 'vue-antd-ui/es/card/Card'
|
||
7 years ago
|
import SearchForm from './SearchForm'
|
||
7 years ago
|
export default {
|
||
|
name: 'ProjectList',
|
||
7 years ago
|
components: {SearchForm, ACard}
|
||
7 years ago
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|