[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
+3 -9
View File
@@ -103,18 +103,12 @@
@buy-clicked="onBuyClicked"
@add-cart="onAddCartClicked"
>
<template
slot="sku-header-price"
slot-scope="props"
>
<template v-slot:sku-header-price="{ price }">
<div class="van-sku__goods-price">
<span class="van-sku__price-symbol"></span><span class="van-sku__price-num">{{ props.price }}</span>
<span class="van-sku__price-symbol"></span><span class="van-sku__price-num">{{ price }}</span>
</div>
</template>
<template
slot="sku-actions"
slot-scope="props"
>
<template v-slot:sku-actions="{ skuEventBus }">
<div class="van-sku-actions">
<van-button
square