Skip to content
New issue

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

docs: add white space to the demo code #22789

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/docs/en-US/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Setting the `autosize` prop for a textarea type of Input makes the height to aut
<div style="margin: 20px 0;"></div>
<el-input
type="textarea"
:autosize="{ minRows: 2, maxRows: 4}"
:autosize="{ minRows: 2, maxRows: 4 }"
placeholder="Please input"
v-model="textarea2">
</el-input>
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/es/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ El ajuste del prop `autosize` en el tipo de Input textarea hace que la altura se
<div style="margin: 20px 0;"></div>
<el-input
type="textarea"
:autosize="{ minRows: 2, maxRows: 4}"
:autosize="{ minRows: 2, maxRows: 4 }"
placeholder="Please input"
v-model="textarea2">
</el-input>
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/fr-FR/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Configurer la propriété `autosize` pour une zone de texte permet de rendre la
<div style="margin: 20px 0;"></div>
<el-input
type="textarea"
:autosize="{ minRows: 2, maxRows: 4}"
:autosize="{ minRows: 2, maxRows: 4 }"
placeholder="Entrez quelque chose"
v-model="textarea2">
</el-input>
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/zh-CN/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default {
<div style="margin: 20px 0;"></div>
<el-input
type="textarea"
:autosize="{ minRows: 2, maxRows: 4}"
:autosize="{ minRows: 2, maxRows: 4 }"
placeholder="请输入内容"
v-model="textarea2">
</el-input>
Expand Down