[Doc] use v-slot in demos (#3573)

This commit is contained in:
neverland
2019-06-20 17:32:00 +08:00
committed by GitHub
parent 729b9dac4b
commit d9f2ad6759
25 changed files with 141 additions and 170 deletions

View File

@@ -31,11 +31,9 @@
<demo-block :title="$t('customIcon')">
<van-checkbox v-model="checkbox3">
{{ $t('customIcon') }}
<img
slot="icon"
slot-scope="props"
:src="props.checked ? icon.active : icon.inactive"
>
<template v-slot:icon="{ checked }">
<img :src="checked ? icon.active : icon.inactive">
</template>
</van-checkbox>
</demo-block>