mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(SwipeCell): change "slot" to "v-slot" (#5840)
This commit is contained in:
parent
3c3390c4fd
commit
d758978e17
@ -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>
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user