Files
uni/packages/search-picker/index.vue
2023-07-10 19:26:19 +08:00

34 lines
653 B
Vue

<!--
* @Author: zhaojinfeng 121016171@qq.com
* @Date: 2023-06-25 19:26:10
* @LastEditors: zhaojinfeng 121016171@qq.com
* @LastEditTime: 2023-06-25 19:42:51
* @FilePath: \uni\packages\search-picker\index.vue
* @Description:
*
-->
<template>
<view>
<a-popup show>
xxxxxxxxxxxxxxxxxxxxxxxx
</a-popup>
SearchPicker
</view>
</template>
<script lang="ts" setup name="SearchPicker">
withDefaults(
defineProps<{
/** 是否必填 */
required?: boolean
/** 输入框的提示文字 */
placeholder?: string
/** 输入框的默认值 */
defaulrValue?: string
}>(),
{
required: false,
},
)
</script>