zhengyiming
2025-03-25 174f774704bbab83061288522ec4fbdfba1f6716
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
  <nut-input
    class="nut-input-text bole-input-text"
    type="text"
    readonly
    alwaysEmbed
    v-bind="$attrs"
  >
    <template #clear>
      <slot name="clear"></slot>
    </template>
    <template #right>
      <slot name="right">
        <RectRight :size="12" class="common-choose-input-icon" />
      </slot>
    </template>
  </nut-input>
</template>
 
<script setup lang="ts">
import { RectRight } from '@nutui/icons-vue-taro';
import { Input as NutInput } from '@nutui/nutui-taro';
 
defineOptions({
  name: 'ChooseInput',
});
</script>