-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(card): card组件支持传入loadingProps参数
card组件支持传入loadingProps参数 closed #423
- Loading branch information
Showing
7 changed files
with
39 additions
and
5 deletions.
There are no files selected for viewing
Submodule _common
updated
3 files
+4 −0 | docs/web/api/card.en-US.md | |
+5 −0 | docs/web/api/card.md | |
+1 −0 | style/mobile/components/side-bar/v2/_index.less |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<template> | ||
<t-card | ||
bordered | ||
title="自定义loadingProps" | ||
:loading="isLoading" | ||
:style="{ width: '400px' }" | ||
:loading-props="customProps" | ||
> | ||
{{ infoMessage }} | ||
</t-card> | ||
</template> | ||
|
||
<script setup lang="jsx"> | ||
const customProps = { | ||
text: 'TDesign努力加载中...', | ||
}; | ||
const isLoading = true; | ||
const infoMessage = `卡片内容,以描述性为主,可以是文字、图片或图文组合的形式。按业务需求进行自定义组合。`; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters