2.0.3 • Published 5 months ago

@wu-component/wu-card v2.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

Card 卡片

将信息聚合在卡片容器中展示。

基础用法

::: demo

<template>
    <div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
        <wu-plus-card class="box-card" style="width: 400px">
            <div slot="header" class="clearfix">
                <span>卡片名称</span>
                <wu-plus-button style="float: right; padding: 3px 0" type="text">操作按钮</wu-plus-button>
            </div>
            <div class="text item">列表内容</div>
            <div class="text item">列表内容</div>
            <div class="text item">列表内容</div>
            <div class="text item">列表内容</div>
        </wu-plus-card>
    </div>
</template>
<script>
</script>

:::

简单卡片

卡片可以只有内容区域。

::: demo

<template>
    <div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
        <wu-plus-card class="box-card" style="width: 400px" header-show="false">
            <div class="text item">列表内容</div>
            <div class="text item">列表内容</div>
            <div class="text item">列表内容</div>
            <div class="text item">列表内容</div>
        </wu-plus-card>
    </div>
</template>
<script>
</script>

:::

卡片阴影

可对阴影的显示进行配置,通过shadow属性设置卡片阴影出现的时机:always、hover或never。

::: demo

<template>
    <div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
        <wu-plus-card shadow="always" style="width: 150px" header-show="false">
            总是显示
        </wu-plus-card>
        <wu-plus-card shadow="hover" style="width: 150px" header-show="false">
            鼠标悬浮时显示
        </wu-plus-card>
        <wu-plus-card shadow="never" style="width: 150px" header-show="false">
            从不显示
        </wu-plus-card>
    </div>
</template>
<script>
</script>

:::

Attributes

参数说明类型可选值默认值
header设置 header,也可以通过 slot#header 传入 DOMString--
body-style设置 body 的样式Object-{ padding: '20px' }
header-show头部是否展示Booleantrue、falsetrue
shadow设置阴影显示时机Stringalways、 hover、never'always'

Slot

参数说明
--自定义主体内容
header自定义header
2.0.3

5 months ago

2.0.1

1 year ago

2.0.0

1 year ago

1.11.8

1 year ago

1.11.7

1 year ago

1.11.6

1 year ago

1.11.4

1 year ago

1.11.3

1 year ago

1.11.1

1 year ago

1.11.0

1 year ago

1.10.6

1 year ago

1.10.5

1 year ago

1.10.4

1 year ago

1.10.3

1 year ago

1.10.2

1 year ago

1.10.1

1 year ago

1.10.0

1 year ago

1.9.24

2 years ago

1.9.22

2 years ago

1.9.21

2 years ago

1.9.20

2 years ago

1.9.18

2 years ago

1.9.17

2 years ago

1.9.1

2 years ago

1.8.0

2 years ago

1.7.0

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago