mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(Switch): fix custom node demo (#10720)
This commit is contained in:
parent
ffefe3002f
commit
6225c8123c
@ -65,9 +65,11 @@ Using `node` slot to custom the content of the node.
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<van-switch v-model="checked">
|
<van-switch v-model="checked">
|
||||||
|
<template #node>
|
||||||
<div class="icon-wrapper">
|
<div class="icon-wrapper">
|
||||||
<van-icon :name="checked ? 'success' : 'cross'" />
|
<van-icon :name="checked ? 'success' : 'cross'" />
|
||||||
</div>
|
</div>
|
||||||
|
</template>
|
||||||
</van-switch>
|
</van-switch>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@ -75,9 +75,11 @@ export default {
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<van-switch v-model="checked">
|
<van-switch v-model="checked">
|
||||||
|
<template #node>
|
||||||
<div class="icon-wrapper">
|
<div class="icon-wrapper">
|
||||||
<van-icon :name="checked ? 'success' : 'cross'" />
|
<van-icon :name="checked ? 'success' : 'cross'" />
|
||||||
</div>
|
</div>
|
||||||
|
</template>
|
||||||
</van-switch>
|
</van-switch>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user