diff --git a/src/loading/README.md b/src/loading/README.md index ddd5ab7fd..ae205b274 100644 --- a/src/loading/README.md +++ b/src/loading/README.md @@ -47,6 +47,18 @@ Vue.use(Loading); Loading... ``` +### Text Color + +use `color` or `text-color` to change text color. + +```html + + + + + +``` + ## API ### Props @@ -57,6 +69,7 @@ Vue.use(Loading); | type | Can be set to `spinner` | _string_ | `circular` | | size | Icon size | _number \| string_ | `30px` | | text-size | Text font size | _number \| string_ | `14px` | +| text-color `v2.12.2` | Text color | _string_ | `#c9c9c9` | | vertical | Whether to arrange icons and text content vertically | _boolean_ | `false` | ### Slots diff --git a/src/loading/README.zh-CN.md b/src/loading/README.zh-CN.md index 91a3d9971..da7296ee4 100644 --- a/src/loading/README.zh-CN.md +++ b/src/loading/README.zh-CN.md @@ -61,17 +61,30 @@ Vue.use(Loading); 加载中... ``` +### 自定义文案颜色 + +通过 `color` 或者 `text-color` 属性设置加载文案的颜色。 + +```html + + + + + +``` + ## API ### Props -| 参数 | 说明 | 类型 | 默认值 | -| --------- | ---------------------------- | ------------------ | ---------- | -| color | 颜色 | _string_ | `#c9c9c9` | -| type | 类型,可选值为 `spinner` | _string_ | `circular` | -| size | 加载图标大小,默认单位为`px` | _number \| string_ | `30px` | -| text-size | 文字大小,默认单位为`px` | _number \| string_ | `14px` | -| vertical | 是否垂直排列图标和文字内容 | _boolean_ | `false` | +| 参数 | 说明 | 类型 | 默认值 | +| --- | --- | --- | --- | +| color | 颜色 | _string_ | `#c9c9c9` | +| type | 类型,可选值为 `spinner` | _string_ | `circular` | +| size | 加载图标大小,默认单位为 `px` | _number \| string_ | `30px` | +| text-size | 文字大小,默认单位为 `px` | _number \| string_ | `14px` | +| text-color `v2.12.2` | 文字颜色 | _string_ | `#c9c9c9` | +| vertical | 是否垂直排列图标和文字内容 | _boolean_ | `false` | ### Slots diff --git a/src/loading/demo/index.vue b/src/loading/demo/index.vue index 16cb624ab..cebc7db0b 100644 --- a/src/loading/demo/index.vue +++ b/src/loading/demo/index.vue @@ -26,6 +26,15 @@ {{ t('loading') }} + + + + {{ t('loading') }} + + + {{ t('loading') }} + + @@ -38,6 +47,7 @@ export default { size: '自定义大小', color: '自定义颜色', vertical: '垂直排列', + textColor: '自定义文本颜色', }, 'en-US': { type: 'Type', @@ -45,6 +55,7 @@ export default { size: 'Size', color: 'Color', vertical: 'Vertical', + textColor: 'Text Color', }, }, }; diff --git a/src/loading/index.tsx b/src/loading/index.tsx index a13371607..e084c5b1d 100644 --- a/src/loading/index.tsx +++ b/src/loading/index.tsx @@ -14,6 +14,7 @@ export type LoadingProps = { color: string; vertical?: boolean; textSize?: string | number; + textColor?: string; }; const [createComponent, bem] = createNamespace('loading'); @@ -40,8 +41,9 @@ function LoadingText( slots: DefaultSlots ) { if (slots.default) { - const style = props.textSize && { + const style = { fontSize: addUnit(props.textSize), + color: props.textColor ?? props.color, }; return ( @@ -85,6 +87,7 @@ Loading.props = { size: [Number, String], vertical: Boolean, textSize: [Number, String], + textColor: String, type: { type: String, default: 'circular', diff --git a/src/loading/test/__snapshots__/demo.spec.js.snap b/src/loading/test/__snapshots__/demo.spec.js.snap index 424aa506c..da915a83e 100644 --- a/src/loading/test/__snapshots__/demo.spec.js.snap +++ b/src/loading/test/__snapshots__/demo.spec.js.snap @@ -24,5 +24,13 @@ exports[`renders demo correctly 1`] = ` 加载中... +
+
+ 加载中... +
+
+ 加载中... +
+
`;