generated from thzxcx/vue3
feat: 卡片等组件
This commit is contained in:
33
packages/search-picker/index.vue
Normal file
33
packages/search-picker/index.vue
Normal file
@ -0,0 +1,33 @@
|
||||
<!--
|
||||
* @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>
|
Reference in New Issue
Block a user