We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.0.0-rc.2
vue3.0.3
https://2x.antdv.com/components/input-cn/#components-input-demo-textarea
<template> <!-- 1.当前textarea宽度不为45% --> <a-textarea class="w-45" v-model:value="value" /> <!-- 2.当前textarea宽度不为45% --> <a-textarea v-model:value="value" style="width: 45%" /> <!-- 3.通过文档级的css进行渲染为45% --> <a-textarea v-model:value="value" /> </template>
<script> export default { data() { return { value: "", }; }, }; </script>
<style lang="scss" scoped> .w-45 { width: 45%; } textarea:nth-child(3) { width: 45%; } </style>
解决内联class和style被吞服问题。
The text was updated successfully, but these errors were encountered:
fix: input lose style vueComponent#3273
c5b67f6
fix: input lose style #3273 (#3274)
7f239b2
下个版本修复
Sorry, something went wrong.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Version
2.0.0-rc.2
Environment
vue3.0.3
Reproduction link
https://2x.antdv.com/components/input-cn/#components-input-demo-textarea
Steps to reproduce
What is expected?
解决内联class和style被吞服问题。
What is actually happening?
解决内联class和style被吞服问题。
The text was updated successfully, but these errors were encountered: