Merge branch 'dev' of https://github.com/youzan/vant into dev

This commit is contained in:
chenjiahan 2020-03-18 21:56:37 +08:00
commit 8c56a37943
2 changed files with 24 additions and 22 deletions

View File

@ -15,11 +15,11 @@ Vue.use(SwipeCell);
```html ```html
<van-swipe-cell> <van-swipe-cell>
<template slot="left"> <template #left>
<van-button square type="primary" text="Select" /> <van-button square type="primary" text="Select" />
</template> </template>
<van-cell :border="false" title="Cell" value="Cell Content" /> <van-cell :border="false" title="Cell" value="Cell Content" />
<template slot="right"> <template #right>
<van-button square type="danger" text="Delete" /> <van-button square type="danger" text="Delete" />
<van-button square type="primary" text="Collect"/> <van-button square type="primary" text="Collect"/>
</template> </template>
@ -38,13 +38,14 @@ Vue.use(SwipeCell);
class="goods-card" class="goods-card"
thumb="https://img.yzcdn.cn/vant/cat.jpeg" thumb="https://img.yzcdn.cn/vant/cat.jpeg"
/> />
<van-button <template #right>
slot="right" <van-button
square square
text="Delete" text="Delete"
type="danger" type="danger"
class="delete-button" class="delete-button"
/> />
</template>
</van-swipe-cell> </van-swipe-cell>
<style> <style>
@ -63,11 +64,11 @@ Vue.use(SwipeCell);
```html ```html
<van-swipe-cell :before-close="beforeClose"> <van-swipe-cell :before-close="beforeClose">
<template slot="left"> <template #left>
<van-button square type="primary" text="Select" /> <van-button square type="primary" text="Select" />
</template> </template>
<van-cell :border="false" title="Cell" value="Cell Content" /> <van-cell :border="false" title="Cell" value="Cell Content" />
<template slot="right"> <template #right>
<van-button square type="danger" text="Delete" /> <van-button square type="danger" text="Delete" />
</template> </template>
</van-swipe-cell> </van-swipe-cell>

View File

@ -17,11 +17,11 @@ Vue.use(SwipeCell);
```html ```html
<van-swipe-cell> <van-swipe-cell>
<template slot="left"> <template #left>
<van-button square type="primary" text="选择" /> <van-button square type="primary" text="选择" />
</template> </template>
<van-cell :border="false" title="单元格" value="内容" /> <van-cell :border="false" title="单元格" value="内容" />
<template slot="right"> <template #right>
<van-button square type="danger" text="删除" /> <van-button square type="danger" text="删除" />
<van-button square type="primary" text="收藏"/> <van-button square type="primary" text="收藏"/>
</template> </template>
@ -42,13 +42,14 @@ Vue.use(SwipeCell);
class="goods-card" class="goods-card"
thumb="https://img.yzcdn.cn/vant/cat.jpeg" thumb="https://img.yzcdn.cn/vant/cat.jpeg"
/> />
<van-button <template #right>
slot="right" <van-button
square square
text="删除" text="删除"
type="danger" type="danger"
class="delete-button" class="delete-button"
/> />
</template>
</van-swipe-cell> </van-swipe-cell>
<style> <style>
@ -69,11 +70,11 @@ Vue.use(SwipeCell);
```html ```html
<van-swipe-cell :before-close="beforeClose"> <van-swipe-cell :before-close="beforeClose">
<template slot="left"> <template #left>
<van-button square type="primary" text="选择" /> <van-button square type="primary" text="选择" />
</template> </template>
<van-cell :border="false" title="单元格" value="内容" /> <van-cell :border="false" title="单元格" value="内容" />
<template slot="right"> <template #right>
<van-button square type="danger" text="删除" /> <van-button square type="danger" text="删除" />
</template> </template>
</van-swipe-cell> </van-swipe-cell>