mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat: provide english version of web-types (#10207)
This commit is contained in:
parent
d4aebef89c
commit
b3d6611c74
@ -16,7 +16,7 @@ export function genVeturConfig() {
|
||||
markdownVetur.parseAndWrite({
|
||||
name: vantConfig.name,
|
||||
path: SRC_DIR,
|
||||
test: /zh-CN\.md/,
|
||||
test: /README\.md/,
|
||||
version: pkgJson.version,
|
||||
outputDir: VETUR_DIR,
|
||||
...options,
|
||||
|
@ -3,9 +3,9 @@ import { VueTag, VeturTags, VeturAttributes, VeturAttribute } from './type';
|
||||
export function genVeturTags(tags: VueTag[]) {
|
||||
const veturTags: VeturTags = {};
|
||||
|
||||
tags.forEach(tag => {
|
||||
tags.forEach((tag) => {
|
||||
veturTags[tag.name] = {
|
||||
attributes: tag.attributes ? tag.attributes.map(item => item.name) : [],
|
||||
attributes: tag.attributes ? tag.attributes.map((item) => item.name) : [],
|
||||
};
|
||||
});
|
||||
|
||||
@ -15,16 +15,16 @@ export function genVeturTags(tags: VueTag[]) {
|
||||
export function genVeturAttributes(tags: VueTag[]) {
|
||||
const veturAttributes: VeturAttributes = {};
|
||||
|
||||
tags.forEach(tag => {
|
||||
tags.forEach((tag) => {
|
||||
if (tag.attributes) {
|
||||
tag.attributes.forEach(attr => {
|
||||
let attribute: VeturAttribute = {
|
||||
tag.attributes.forEach((attr) => {
|
||||
const attribute: VeturAttribute = {
|
||||
type: attr.value.type,
|
||||
description: `${attr.description}, 默认值: ${attr.default}`
|
||||
}
|
||||
description: `${attr.description}, Default: ${attr.default}`,
|
||||
};
|
||||
|
||||
if (attr.options.length > 0) {
|
||||
attribute.options = attr.options
|
||||
attribute.options = attr.options;
|
||||
}
|
||||
|
||||
veturAttributes[`${tag.name}/${attr.name}`] = attribute;
|
||||
|
@ -116,7 +116,7 @@ Use `badge` prop to show badge in icon.
|
||||
| color | Button color, support linear-gradient | _string_ | - |
|
||||
| icon | Left Icon | _string_ | - |
|
||||
| disabled | Whether to disable button | _boolean_ | `false` |
|
||||
| loading | Whether show loading status | _boolean_ | `false` |
|
||||
| loading | Whether to show loading status | _boolean_ | `false` |
|
||||
| url | Link | _string_ | - |
|
||||
| to | Target route of the link, same as to of vue-router | _string \| object_ | - |
|
||||
| replace | If true, the navigation will not leave a history record | _boolean_ | `false` |
|
||||
|
@ -126,7 +126,7 @@ app.use(Button);
|
||||
| round | Whether to be round button | _boolean_ | `false` |
|
||||
| square | Whether to be square button | _boolean_ | `false` |
|
||||
| disabled | Whether to disable button | _boolean_ | `false` |
|
||||
| loading | Whether show loading status | _boolean_ | `false` |
|
||||
| loading | Whether to show loading status | _boolean_ | `false` |
|
||||
| loading-text | Loading text | _string_ | - |
|
||||
| loading-type | Loading type, can be set to `spinner` | _string_ | `circular` |
|
||||
| loading-size | Loading icon size | _number \| string_ | `20px` |
|
||||
|
@ -146,8 +146,8 @@ export default {
|
||||
| autoplay | Autoplay interval (ms) | _number \| string_ | - |
|
||||
| duration | Animation duration (ms) | _number \| string_ | `500` |
|
||||
| initial-swipe | Index of initial swipe, start from 0 | _number \| string_ | `0` |
|
||||
| width | Set Swiper Item Width | _number \| string_ | `0` |
|
||||
| height | Set Swiper Item Height | _number \| string_ | `0` |
|
||||
| width | Width of swipe item | _number \| string_ | `0` |
|
||||
| height | Height of swipe item | _number \| string_ | `0` |
|
||||
| loop | Whether to enable loop | _boolean_ | `true` |
|
||||
| show-indicators | Whether to show indicators | _boolean_ | `true` |
|
||||
| vertical | Whether to be vertical Scrolling | _boolean_ | `false` |
|
||||
|
Loading…
x
Reference in New Issue
Block a user