docs: fix cdn link (#8023)

This commit is contained in:
neverland
2021-01-27 10:25:07 +08:00
committed by GitHub
parent 07678f2d6b
commit 67d44a0fa5
93 changed files with 267 additions and 250 deletions

View File

@@ -71,17 +71,17 @@ Use slots to custom tips.
<template #pulling="props">
<img
class="doge"
src="https://img.yzcdn.cn/vant/doge.png"
src="https://img01.yzcdn.cn/vant/doge.png"
:style="{ transform: `scale(${props.distance / 80})` }"
/>
</template>
<template #loosing>
<img class="doge" src="https://img.yzcdn.cn/vant/doge.png" />
<img class="doge" src="https://img01.yzcdn.cn/vant/doge.png" />
</template>
<template #loading>
<img class="doge" src="https://img.yzcdn.cn/vant/doge-fire.jpg" />
<img class="doge" src="https://img01.yzcdn.cn/vant/doge-fire.jpg" />
</template>
<p>Refresh Count: {{ count }}</p>
</van-pull-refresh>

View File

@@ -76,19 +76,19 @@ export default {
<template #pulling="props">
<img
class="doge"
src="https://img.yzcdn.cn/vant/doge.png"
src="https://img01.yzcdn.cn/vant/doge.png"
:style="{ transform: `scale(${props.distance / 80})` }"
/>
</template>
<!-- 释放提示 -->
<template #loosing>
<img class="doge" src="https://img.yzcdn.cn/vant/doge.png" />
<img class="doge" src="https://img01.yzcdn.cn/vant/doge.png" />
</template>
<!-- 加载提示 -->
<template #loading>
<img class="doge" src="https://img.yzcdn.cn/vant/doge-fire.jpg" />
<img class="doge" src="https://img01.yzcdn.cn/vant/doge-fire.jpg" />
</template>
<p>刷新次数: {{ count }}</p>
</van-pull-refresh>