Created
July 29, 2024 10:38
-
-
Save xiaoland/679c913c69493c5e973ae1b67f8a5633 to your computer and use it in GitHub Desktop.
[Bug Reproduce] Wot-Design-Uni wd-textarea placeholder can't be empty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
export default { | |
name: 'plainMessageEditor', | |
props: { | |
}, | |
data() { | |
return { | |
data: "" | |
} | |
}, | |
} | |
</script> | |
<template> | |
<wd-textarea id="content-editor" | |
v-model="data" | |
:placeholder="''" | |
/> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment