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.
33 lines
407 B
33 lines
407 B
<!--
|
|
@ 作者: 秦东
|
|
@ 时间: 2024-07-17 15:35:39
|
|
@ 备注: 卡片视图
|
|
-->
|
|
<script lang='ts' setup>
|
|
const props = defineProps({
|
|
searchSend:{
|
|
type:Object,
|
|
default(){
|
|
return {}
|
|
}
|
|
},
|
|
viewSetup:{
|
|
type:Object,
|
|
default(){
|
|
return {}
|
|
}
|
|
},
|
|
drawerWith:{
|
|
type:Number,
|
|
default:0
|
|
}
|
|
});
|
|
</script>
|
|
<template>
|
|
<div>
|
|
{{viewSetup}}
|
|
</div>
|
|
</template>
|
|
<style lang='scss' scoped>
|
|
|
|
</style>
|
|
|