21 lines
262 B
Vue
21 lines
262 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
const props = withDefaults(defineProps<{
|
||
|
|
/**
|
||
|
|
* 相关搜索参数
|
||
|
|
*/
|
||
|
|
titleSearchList?: Array<any>,
|
||
|
|
/**
|
||
|
|
* 当前选中的值
|
||
|
|
*/
|
||
|
|
selectValue?: Array<any>,
|
||
|
|
|
||
|
|
}>(), {
|
||
|
|
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div>
|
||
|
|
</div>
|
||
|
|
</template>
|