Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
volar committed Jun 17, 2024
1 parent c08225d commit 315fe3f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"./styles": "./dist/style.css",
"./*": "./*"
},
"version": "1.47.0-alpha75",
"version": "1.47.0-alpha76",
"type": "module",
"license": "Apache-2.0",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion src/components/form/AFormTextField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ const disabledComputed = computed(() => {
/>
</slot>
</template>
<template #prepend>
<template
v-if="$slots.prepend"
#prepend
>
<slot name="prepend" />
</template>
<template
Expand Down
5 changes: 4 additions & 1 deletion src/components/form/AFormTextarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ const disabledComputed = computed(() => {
/>
</slot>
</template>
<template #prepend>
<template
v-if="$slots.prepend"
#prepend
>
<slot name="prepend" />
</template>
<template
Expand Down

0 comments on commit 315fe3f

Please sign in to comment.