diff --git a/examples/docs/en-US/input.md b/examples/docs/en-US/input.md index a5746fbbe..044f42a84 100644 --- a/examples/docs/en-US/input.md +++ b/examples/docs/en-US/input.md @@ -644,8 +644,8 @@ Search data from server-side. | ----| ----| ----| ---- | ----- | |type| type of input | string | text / textarea | text | |value| binding value | string / number| — | — | -|maxlength| maximum Input text length| number| — | — | -|minlength| minimum Input text length| number | — | — | +|maxlength| same as `maxlength` in native input | number| — | — | +|minlength| same as `minlength` in native input | number | — | — | |placeholder| placeholder of Input| string | — | — | | clearable | whether to show clear button | boolean | — | false | |disabled | whether Input is disabled | boolean | — | false | diff --git a/examples/docs/en-US/quickstart.md b/examples/docs/en-US/quickstart.md index a229ca4b4..19fe04952 100644 --- a/examples/docs/en-US/quickstart.md +++ b/examples/docs/en-US/quickstart.md @@ -253,19 +253,7 @@ With the above config, the default size of all components that have size attribu ### Start coding -Now you have implemented Vue and Element to your project, and it's time to write your code. Start development mode: - -```bash -npm run dev -``` - -Build: - -```bash -npm run build -``` - -Please refer to each component's documentation to learn how to use them. +Now you have implemented Vue and Element to your project, and it's time to write your code. Please refer to each component's documentation to learn how to use them. ### Use Nuxt.js diff --git a/examples/docs/es/input.md b/examples/docs/es/input.md index 9c2aa1138..eacbabdd1 100644 --- a/examples/docs/es/input.md +++ b/examples/docs/es/input.md @@ -624,8 +624,8 @@ Búsqueda de datos desde el servidor. | ------------- | ---------------------------------------- | ---------------- | -------------------------------- | ----------- | | type | tipo de input | string | text / textarea | text | | value | valor enlazado | string / number | — | — | -| maxlength | el maximo para el largo del texto | number | — | — | -| minlength | el mínimo para el largo del texto | number | — | — | +| maxlength | igual que `maxlength` en el input nativo | number | — | — | +| minlength | igual que `minlength` en el input nativo | number | — | — | | placeholder | placeholder del Input | string | — | — | | disabled | si esta deshabilitado | boolean | — | false | | size | tamaño del input, esto no funciona cuando `type` no es textarea | string | medium / small / mini | — | diff --git a/examples/docs/es/quickstart.md b/examples/docs/es/quickstart.md index c28d59d50..4ff51580d 100644 --- a/examples/docs/es/quickstart.md +++ b/examples/docs/es/quickstart.md @@ -252,19 +252,7 @@ Con la anterior configuración, el tamaño por defecto de todos los componentes ### Empiece ya! -Ahora ha incorporado Vue y Element a su proyecto y es el momento para comenzar a programar. Inicie el modo de desarrollo: - -```bash -npm run dev -``` - -Build: - -```bash -npm run build -``` - -Por favor, refiérase a la documentación de cada componente para aprender cómo usarlos. +Ahora ha incorporado Vue y Element a su proyecto y es el momento para comenzar a programar. Por favor, refiérase a la documentación de cada componente para aprender cómo usarlos. ### Use Nuxt.js diff --git a/examples/docs/zh-CN/input.md b/examples/docs/zh-CN/input.md index 4e5f14f54..7153ef70e 100644 --- a/examples/docs/zh-CN/input.md +++ b/examples/docs/zh-CN/input.md @@ -800,8 +800,8 @@ export default { |------------- |---------------- |---------------- |---------------------- |-------- | | type | 类型 | string | text / textarea | text | | value | 绑定值 | string / number | — | — | -| maxlength | 最大输入长度 | number | — | — | -| minlength | 最小输入长度 | number | — | — | +| maxlength | 原生属性,最大输入长度 | number | — | — | +| minlength | 原生属性,最小输入长度 | number | — | — | | placeholder | 输入框占位文本 | string | — | — | | clearable | 是否可清空 | boolean | — | false | | disabled | 禁用 | boolean | — | false | diff --git a/examples/docs/zh-CN/quickstart.md b/examples/docs/zh-CN/quickstart.md index 4e403319a..3d6b7d79b 100644 --- a/examples/docs/zh-CN/quickstart.md +++ b/examples/docs/zh-CN/quickstart.md @@ -253,19 +253,7 @@ Vue.use(Button); ### 开始使用 -至此,一个基于 Vue 和 Element 的开发环境已经搭建完毕,现在就可以编写代码了。启动开发模式: - -```bash -npm run dev -``` - -编译: - -```bash -npm run build -``` - -各个组件的使用方法请参阅它们各自的文档。 +至此,一个基于 Vue 和 Element 的开发环境已经搭建完毕,现在就可以编写代码了。各个组件的使用方法请参阅它们各自的文档。 ### 使用 Nuxt.js