docs(Switch): fix custom node demo (#10720)

This commit is contained in:
neverland 2022-06-16 18:45:27 +08:00 committed by GitHub
parent ffefe3002f
commit 6225c8123c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View File

@ -65,9 +65,11 @@ Using `node` slot to custom the content of the node.
```html
<van-switch v-model="checked">
<template #node>
<div class="icon-wrapper">
<van-icon :name="checked ? 'success' : 'cross'" />
</div>
</template>
</van-switch>
<style>

View File

@ -75,9 +75,11 @@ export default {
```html
<van-switch v-model="checked">
<template #node>
<div class="icon-wrapper">
<van-icon :name="checked ? 'success' : 'cross'" />
</div>
</template>
</van-switch>
<style>