This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-docs/src/nzPlug/clickSearch/index.vue

21 lines
262 B
Vue
Raw Normal View History

2024-05-27 15:19:04 +08:00
<script lang="ts" setup>
const props = withDefaults(defineProps<{
/**
* 相关搜索参数
*/
titleSearchList?: Array<any>,
/**
* 当前选中的值
*/
selectValue?: Array<any>,
}>(), {
})
</script>
<template>
<div>
</div>
</template>