docs: using jsdelivr for assets (#10434)

This commit is contained in:
neverland 2022-03-26 09:33:47 +08:00 committed by GitHub
parent c7904c4f63
commit d02b0b8eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
99 changed files with 326 additions and 267 deletions

View File

@ -1,5 +1,5 @@
<p align="center"> <p align="center">
<img alt="logo" src="https://img.yzcdn.cn/vant/logo.png" width="120" height="120" style="margin-bottom: 10px;"> <img alt="logo" src="https://cdn.jsdelivr.net/npm/@vant/assets/logo.png" width="120" height="120" style="margin-bottom: 10px;">
</p> </p>
<h1 align="center">Vant</h1> <h1 align="center">Vant</h1>
@ -113,7 +113,7 @@ Vant 3/4 supports modern browsers and Chrome >= 51、iOS >= 10.0 (same as Vue 3)
You can scan the following QR code to access the demo You can scan the following QR code to access the demo
<img src="https://img.yzcdn.cn/vant/preview_qrcode_20180528.png" width="220" height="220" > <img src="https://cdn.jsdelivr.net/npm/@vant/assets/preview-qrcode.png" width="220" height="220" >
## Core Team ## Core Team

View File

@ -1,5 +1,5 @@
<p align="center"> <p align="center">
<img alt="logo" src="https://img.yzcdn.cn/vant/logo.png" width="120" style="margin-bottom: 10px;"> <img alt="logo" src="https://cdn.jsdelivr.net/npm/@vant/assets/logo.png" width="120" style="margin-bottom: 10px;">
</p> </p>
<h1 align="center">Vant</h1> <h1 align="center">Vant</h1>
@ -121,7 +121,7 @@ Vant 3/4 支持现代浏览器以及 Chrome >= 51、iOS >= 10.0(与 Vue 3 一
可以手机扫码以下二维码访问手机端 demo 可以手机扫码以下二维码访问手机端 demo
<img src="https://img.yzcdn.cn/vant/preview_qrcode_20180528.png" width="220" height="220" > <img src="https://cdn.jsdelivr.net/npm/@vant/assets/preview-qrcode.png" width="220" height="220" >
## 核心团队 ## 核心团队

View File

@ -10,7 +10,7 @@ module.exports = {
}, },
site: { site: {
title: '<%= name %>', title: '<%= name %>',
logo: 'https://img.yzcdn.cn/vant/logo.png', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
nav: [ nav: [
{ {
title: '开发指南', title: '开发指南',

View File

@ -10,7 +10,7 @@ export default {
}, },
site: { site: {
title: '<%= name %>', title: '<%= name %>',
logo: 'https://img.yzcdn.cn/vant/logo.png', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
nav: [ nav: [
{ {
title: '开发指南', title: '开发指南',

View File

@ -44,7 +44,7 @@ export default {
// 标题 // 标题
title: 'Demo UI', title: 'Demo UI',
// 图标 // 图标
logo: 'https://img.yzcdn.cn/vant/logo.png', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
// 描述 // 描述
description: '示例组件库', description: '示例组件库',
// 左侧导航 // 左侧导航

View File

@ -20,7 +20,7 @@ Vant 图标库托管在 [iconfont.cn](https://iconfont.cn) 上,同时仓库中
从 Sketch 中导出图标对应的 SVG 文件,并上传到 [iconfont 项目](https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=2553510)中。 从 Sketch 中导出图标对应的 SVG 文件,并上传到 [iconfont 项目](https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=2553510)中。
<img src="https://img.yzcdn.cn/upload_files/2021/12/21/Fi0XXEorB1SVr_BT-Dz6txHOKNlB.png" style="width: 800px;"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/iconfont-upload.png" style="width: 800px;">
> 此步骤需要图标库管理员权限,请联系 Vant 维护者进行添加。 > 此步骤需要图标库管理员权限,请联系 Vant 维护者进行添加。
@ -38,7 +38,7 @@ Vant 图标库托管在 [iconfont.cn](https://iconfont.cn) 上,同时仓库中
字体文件的 base64 URL 通过 [transfonter](https://transfonter.org/) 生成,步骤如下图所示: 字体文件的 base64 URL 通过 [transfonter](https://transfonter.org/) 生成,步骤如下图所示:
<img src="https://img01.yzcdn.cn/upload_files/2021/12/21/FlMHanQNhDV1XWaw8spnAtHKumjW.png" style="width: 800px;"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/icon-transform.png" style="width: 800px;">
### 4. 发布图标库 ### 4. 发布图标库

View File

@ -92,8 +92,9 @@ export default {
data() { data() {
return { return {
checked: true, checked: true,
activeIcon: 'https://img.yzcdn.cn/vant/user-active.png', activeIcon: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png', inactiveIcon:
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
}, },
}; };
@ -223,4 +224,4 @@ iPhone X 等机型底部存在底部指示条,指示条的操作区域与页
<van-number-keyboard safe-area-inset-bottom /> <van-number-keyboard safe-area-inset-bottom />
``` ```
<img src="https://img.yzcdn.cn/vant/safearea.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/safearea.png">

View File

@ -978,7 +978,7 @@ Reference: [Vant 3.0 正式发布:全面拥抱 Vue 3](https://github.com/youza
- add Cascader component [#7771](https://github.com/youzan/vant/pull/7771) - add Cascader component [#7771](https://github.com/youzan/vant/pull/7771)
<img src="https://b.yzcdn.cn/vant/cascader_1221.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cascader_1221.png">
**Feature** **Feature**

View File

@ -981,7 +981,7 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
- 新增 Cascader 级联选择组件 [#7771](https://github.com/youzan/vant/pull/7771) - 新增 Cascader 级联选择组件 [#7771](https://github.com/youzan/vant/pull/7771)
<img src="https://b.yzcdn.cn/vant/cascader_1221.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cascader_1221.png">
**Feature** **Feature**
@ -1069,7 +1069,7 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
- 新增 [Popover 气泡弹出框](#/zh-CN/popover)组件 [#7579](https://github.com/youzan/vant/issues/7579) - 新增 [Popover 气泡弹出框](#/zh-CN/popover)组件 [#7579](https://github.com/youzan/vant/issues/7579)
![](https://img.yzcdn.cn/vant/component-preview-1122.png) ![](https://cdn.jsdelivr.net/npm/@vant/assets/component-preview-1122.png)
**Feature** **Feature**

View File

@ -12,15 +12,15 @@ Contains color specifications, font specifications, and component design specifi
#### Colors #### Colors
<img src="https://img.yzcdn.cn/vant/color_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/color_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
#### Fonts #### Fonts
<img src="https://img.yzcdn.cn/vant/words_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/words_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
#### Components #### Components
<img src="https://img.yzcdn.cn/vant/tab_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/tab_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
<a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant/docs/assets/design.sketch?raw=true">Download</a> <a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant/docs/assets/design.sketch?raw=true">Download</a>
@ -28,13 +28,13 @@ Contains color specifications, font specifications, and component design specifi
Contains icon library resources. Contains icon library resources.
<img src="https://img.yzcdn.cn/vant/design-icons-0321.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/design-icons-0321.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
<a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant-icons/assets/icons.sketch?raw=true">Download</a> <a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant-icons/assets/icons.sketch?raw=true">Download</a>
### Axure ### Axure
<img src="https://img.yzcdn.cn/vant/vant-axure-0905.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/vant-axure-0905.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
<a class="design-download" href="https://b.yzcdn.cn/vant/vant-axure-20200905.zip">Download</a> <a class="design-download" href="https://b.yzcdn.cn/vant/vant-axure-20200905.zip">Download</a>

View File

@ -12,15 +12,15 @@
#### 色彩规范 #### 色彩规范
<img src="https://img.yzcdn.cn/vant/color_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/color_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
#### 字体规范 #### 字体规范
<img src="https://img.yzcdn.cn/vant/words_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/words_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
#### 组件规范 #### 组件规范
<img src="https://img.yzcdn.cn/vant/tab_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/tab_202009101415.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
<a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant/docs/assets/design.sketch?raw=true">下载</a> <a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant/docs/assets/design.sketch?raw=true">下载</a>
@ -28,7 +28,7 @@
包含 Sketch 格式的图标库资源。 包含 Sketch 格式的图标库资源。
<img src="https://img.yzcdn.cn/vant/design-icons-0321.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/design-icons-0321.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
<a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant-icons/assets/icons.sketch?raw=true">下载</a> <a class="design-download" href="https://github.com/youzan/vant/blob/dev/packages/vant-icons/assets/icons.sketch?raw=true">下载</a>
@ -40,7 +40,7 @@ Vant 的所有图标都托管在 **iconfont.cn** 上,点此查看:[Vant 图
Axure 元件库,由社区的 [@axure-tczy](https://github.com/axure-tczy) 同学贡献。 Axure 元件库,由社区的 [@axure-tczy](https://github.com/axure-tczy) 同学贡献。
<img src="https://img.yzcdn.cn/vant/vant-axure-0905.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/vant-axure-0905.png" style="width: 80%; box-shadow: 0 1px 2px rgba(0,0,0,.2)">
<a class="design-download" href="https://b.yzcdn.cn/vant/vant-axure-20200905.zip">下载</a> <a class="design-download" href="https://b.yzcdn.cn/vant/vant-axure-20200905.zip">下载</a>

View File

@ -1,6 +1,6 @@
<div class="van-doc-card"> <div class="van-doc-card">
<div class="van-doc-intro"> <div class="van-doc-intro">
<img class="van-doc-intro__logo" style="width: 120px; height: 120px;" src="https://img.yzcdn.cn/vant/logo.png"> <img class="van-doc-intro__logo" style="width: 120px; height: 120px;" src="https://cdn.jsdelivr.net/npm/@vant/assets/logo.png">
<h2 style="margin: 0; font-size: 36px; line-height: 60px;">Vant</h2> <h2 style="margin: 0; font-size: 36px; line-height: 60px;">Vant</h2>
<p>Mobile UI Components built on Vue</p> <p>Mobile UI Components built on Vue</p>
</div> </div>

View File

@ -1,6 +1,6 @@
<div class="van-doc-card"> <div class="van-doc-card">
<div class="van-doc-intro"> <div class="van-doc-intro">
<img class="van-doc-intro__logo" style="width: 120px; height: 120px;" src="https://img.yzcdn.cn/vant/logo.png"> <img class="van-doc-intro__logo" style="width: 120px; height: 120px;" src="https://cdn.jsdelivr.net/npm/@vant/assets/logo.png">
<h2 style="margin: 0; font-size: 36px; line-height: 60px;">Vant</h2> <h2 style="margin: 0; font-size: 36px; line-height: 60px;">Vant</h2>
<p>轻量、可靠的移动端 Vue 组件库</p> <p>轻量、可靠的移动端 Vue 组件库</p>
</div> </div>

View File

@ -86,7 +86,7 @@ vue create hello-world
vue ui vue ui
``` ```
![](https://img.yzcdn.cn/vant/vue-cli-demo-201809030812.png) ![](https://cdn.jsdelivr.net/npm/@vant/assets/vue-cli-demo-201809030812.png)
In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to the dependencies. In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to the dependencies.

View File

@ -69,7 +69,10 @@ app.use(Button);
```html ```html
<van-button icon="plus" type="primary" /> <van-button icon="plus" type="primary" />
<van-button icon="plus" type="primary">Button</van-button> <van-button icon="plus" type="primary">Button</van-button>
<van-button icon="https://img.yzcdn.cn/vant/user-active.png" type="primary"> <van-button
icon="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png"
type="primary"
>
Button Button
</van-button> </van-button>
``` ```

View File

@ -83,7 +83,10 @@ app.use(Button);
```html ```html
<van-button icon="plus" type="primary" /> <van-button icon="plus" type="primary" />
<van-button icon="plus" type="primary">按钮</van-button> <van-button icon="plus" type="primary">按钮</van-button>
<van-button icon="https://img.yzcdn.cn/vant/user-active.png" type="primary"> <van-button
icon="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png"
type="primary"
>
按钮 按钮
</van-button> </van-button>
``` ```

View File

@ -107,7 +107,7 @@ const t = useTranslate({
<van-button <van-button
plain plain
type="primary" type="primary"
icon="https://img.yzcdn.cn/vant/user-active.png" icon="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png"
:text="t('button')" :text="t('button')"
/> />
</demo-block> </demo-block>

View File

@ -237,7 +237,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-button__content"> <div class="van-button__content">
<i class="van-badge__wrapper van-icon van-button__icon"> <i class="van-badge__wrapper van-icon van-button__icon">
<img class="van-icon__image" <img class="van-icon__image"
src="https://img.yzcdn.cn/vant/user-active.png" src="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png"
> >
</i> </i>
<span class="van-button__text"> <span class="van-button__text">

View File

@ -26,7 +26,7 @@ app.use(Card);
price="2.00" price="2.00"
title="Title" title="Title"
desc="Description" desc="Description"
thumb="https://img.yzcdn.cn/vant/ipad.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
/> />
``` ```
@ -40,7 +40,7 @@ app.use(Card);
title="Title" title="Title"
desc="Description" desc="Description"
origin-price="10.00" origin-price="10.00"
thumb="https://img.yzcdn.cn/vant/ipad.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
/> />
``` ```
@ -54,7 +54,7 @@ Use slot to custom content.
title="Title" title="Title"
desc="Description" desc="Description"
price="2.00" price="2.00"
thumb="https://img.yzcdn.cn/vant/ipad.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
> >
<template #tags> <template #tags>
<van-tag plain type="danger">Tag</van-tag> <van-tag plain type="danger">Tag</van-tag>

View File

@ -26,7 +26,7 @@ app.use(Card);
price="2.00" price="2.00"
desc="描述信息" desc="描述信息"
title="商品标题" title="商品标题"
thumb="https://img.yzcdn.cn/vant/ipad.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
/> />
``` ```
@ -41,7 +41,7 @@ app.use(Card);
price="2.00" price="2.00"
desc="描述信息" desc="描述信息"
title="商品标题" title="商品标题"
thumb="https://img.yzcdn.cn/vant/ipad.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
origin-price="10.00" origin-price="10.00"
/> />
``` ```
@ -56,7 +56,7 @@ app.use(Card);
price="2.00" price="2.00"
desc="描述信息" desc="描述信息"
title="商品标题" title="商品标题"
thumb="https://img.yzcdn.cn/vant/ipad.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
> >
<template #tags> <template #tags>
<van-tag plain type="danger">标签</van-tag> <van-tag plain type="danger">标签</van-tag>

View File

@ -16,7 +16,7 @@ const t = useTranslate({
}, },
}); });
const imageURL = 'https://img.yzcdn.cn/vant/ipad.jpeg'; const imageURL = 'https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg';
</script> </script>
<template> <template>

View File

@ -8,7 +8,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 100%;" style="width: 100%; height: 100%;"
> >
<img src="https://img.yzcdn.cn/vant/ipad.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -57,7 +57,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 100%;" style="width: 100%; height: 100%;"
> >
<img src="https://img.yzcdn.cn/vant/ipad.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -116,7 +116,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 100%;" style="width: 100%; height: 100%;"
> >
<img src="https://img.yzcdn.cn/vant/ipad.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >

View File

@ -89,8 +89,9 @@ export default {
const checked = ref(true); const checked = ref(true);
return { return {
checked, checked,
activeIcon: 'https://img.yzcdn.cn/vant/user-active.png', activeIcon: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png', inactiveIcon:
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
}, },
}; };

View File

@ -97,8 +97,9 @@ export default {
const checked = ref(true); const checked = ref(true);
return { return {
checked, checked,
activeIcon: 'https://img.yzcdn.cn/vant/user-active.png', activeIcon: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png', inactiveIcon:
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
}, },
}; };

View File

@ -58,8 +58,9 @@ const state = reactive({
horizontalResult: [], horizontalResult: [],
}); });
const activeIcon = 'https://img.yzcdn.cn/vant/user-active.png'; const activeIcon = 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png';
const inactiveIcon = 'https://img.yzcdn.cn/vant/user-inactive.png'; const inactiveIcon =
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png';
const group = ref<CheckboxGroupInstance>(); const group = ref<CheckboxGroupInstance>();
const [refs, setRefs] = useRefs<CheckboxInstance>(); const [refs, setRefs] = useRefs<CheckboxInstance>();

View File

@ -98,7 +98,7 @@ exports[`should render demo and match snapshot 1`] = `
aria-checked="true" aria-checked="true"
> >
<div class="van-checkbox__icon van-checkbox__icon--round van-checkbox__icon--checked"> <div class="van-checkbox__icon van-checkbox__icon--round van-checkbox__icon--checked">
<img src="https://img.yzcdn.cn/vant/user-active.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png">
</div> </div>
<span class="van-checkbox__label"> <span class="van-checkbox__label">
Custom Icon Custom Icon

View File

@ -589,7 +589,7 @@ exports[`should use custom src when using empty-image prop 1`] = `
style="height: 624px;" style="height: 624px;"
> >
<div class="van-coupon-list__empty"> <div class="van-coupon-list__empty">
<img src="https://img.yzcdn.com/xxx.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/xxx.jpeg">
<p> <p>
No coupons No coupons
</p> </p>

View File

@ -106,7 +106,7 @@ test('should have two "van-coupon-list__empty" classes when render coupon list i
test('should use custom src when using empty-image prop', async () => { test('should use custom src when using empty-image prop', async () => {
const wrapper = mount(CouponList, { const wrapper = mount(CouponList, {
props: { props: {
emptyImage: 'https://img.yzcdn.com/xxx.png', emptyImage: 'https://cdn.jsdelivr.net/npm/@vant/assets/xxx.jpeg',
}, },
}); });

View File

@ -112,7 +112,7 @@ If you need to render vue components within a dialog, you can use dialog compone
```html ```html
<van-dialog v-model:show="show" title="Title" show-cancel-button> <van-dialog v-model:show="show" title="Title" show-cancel-button>
<img src="https://img.yzcdn.cn/vant/apple-3.jpg" /> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg" />
</van-dialog> </van-dialog>
``` ```

View File

@ -156,7 +156,7 @@ export default {
```html ```html
<van-dialog v-model:show="show" title="标题" show-cancel-button> <van-dialog v-model:show="show" title="标题" show-cancel-button>
<img src="https://img.yzcdn.cn/vant/apple-3.jpg" /> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg" />
</van-dialog> </van-dialog>
``` ```

View File

@ -36,7 +36,7 @@ const t = useTranslate({
}); });
const show = ref(false); const show = ref(false);
const image = 'https://img.yzcdn.cn/vant/apple-3.jpg'; const image = 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg';
const onClickAlert = () => { const onClickAlert = () => {
Dialog.alert({ Dialog.alert({

View File

@ -105,7 +105,7 @@ exports[`should render demo and match snapshot 1`] = `
Title Title
</div> </div>
<div class="van-dialog__content"> <div class="van-dialog__content">
<img src="https://img.yzcdn.cn/vant/apple-3.jpg"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg">
</div> </div>
<div class="van-hairline--top van-dialog__footer"> <div class="van-hairline--top van-dialog__footer">
<button type="button" <button type="button"

View File

@ -42,7 +42,7 @@ Use the image prop to display different placeholder images.
```html ```html
<van-empty <van-empty
class="custom-image" class="custom-image"
image="https://img.yzcdn.cn/vant/leaf.jpg" image="https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg"
description="Description" description="Description"
/> />

View File

@ -44,7 +44,7 @@ Empty 组件内置了多种占位图片类型,可以在不同业务场景下
```html ```html
<van-empty <van-empty
class="custom-image" class="custom-image"
image="https://img.yzcdn.cn/vant/custom-empty-image.png" image="https://cdn.jsdelivr.net/npm/@vant/assets/custom-empty-image.png"
description="描述文字" description="描述文字"
/> />

View File

@ -52,7 +52,7 @@ const active = ref('error');
<demo-block :title="t('customImage')"> <demo-block :title="t('customImage')">
<van-empty <van-empty
class="custom-image" class="custom-image"
image="https://img.yzcdn.cn/vant/custom-empty-image.png" image="https://cdn.jsdelivr.net/npm/@vant/assets/custom-empty-image.png"
:description="t('description')" :description="t('description')"
/> />
</demo-block> </demo-block>

View File

@ -96,7 +96,7 @@ exports[`should render demo and match snapshot 1`] = `
<div> <div>
<div class="van-empty custom-image"> <div class="van-empty custom-image">
<div class="van-empty__image"> <div class="van-empty__image">
<img src="https://img.yzcdn.cn/vant/custom-empty-image.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/custom-empty-image.png">
</div> </div>
<p class="van-empty__description"> <p class="van-empty__description">
Description Description

View File

@ -308,7 +308,9 @@ import { ref } from 'vue';
export default { export default {
setup() { setup() {
const value = ref([{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }]); const value = ref([
{ url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
]);
return { value }; return { value };
}, },
}; };

View File

@ -332,7 +332,9 @@ import { ref } from 'vue';
export default { export default {
setup() { setup() {
const value = ref([{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }]); const value = ref([
{ url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
]);
return { value }; return { value };
}, },
}; };

View File

@ -54,7 +54,9 @@ const rate = ref(3);
const radio = ref('1'); const radio = ref('1');
const slider = ref(50); const slider = ref(50);
const stepper = ref(1); const stepper = ref(1);
const uploader = ref([{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }]); const uploader = ref([
{ url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
]);
const checkbox = ref(false); const checkbox = ref(false);
const checkboxGroup = ref([]); const checkboxGroup = ref([]);
const switchChecked = ref(false); const switchChecked = ref(false);

View File

@ -450,7 +450,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/leaf.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >

View File

@ -43,13 +43,13 @@ app.use(GridItem);
```html ```html
<van-grid :border="false" :column-num="3"> <van-grid :border="false" :column-num="3">
<van-grid-item> <van-grid-item>
<van-image src="https://img.yzcdn.cn/vant/apple-1.jpg" /> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg" />
</van-grid-item> </van-grid-item>
<van-grid-item> <van-grid-item>
<van-image src="https://img.yzcdn.cn/vant/apple-2.jpg" /> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg" />
</van-grid-item> </van-grid-item>
<van-grid-item> <van-grid-item>
<van-image src="https://img.yzcdn.cn/vant/apple-3.jpg" /> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg" />
</van-grid-item> </van-grid-item>
</van-grid> </van-grid>
``` ```

View File

@ -49,13 +49,13 @@ app.use(GridItem);
```html ```html
<van-grid :border="false" :column-num="3"> <van-grid :border="false" :column-num="3">
<van-grid-item> <van-grid-item>
<van-image src="https://img.yzcdn.cn/vant/apple-1.jpg" /> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg" />
</van-grid-item> </van-grid-item>
<van-grid-item> <van-grid-item>
<van-image src="https://img.yzcdn.cn/vant/apple-2.jpg" /> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg" />
</van-grid-item> </van-grid-item>
<van-grid-item> <van-grid-item>
<van-image src="https://img.yzcdn.cn/vant/apple-3.jpg" /> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg" />
</van-grid-item> </van-grid-item>
</van-grid> </van-grid>
``` ```

View File

@ -48,13 +48,22 @@ const t = useTranslate({
<demo-block :title="t('customContent')"> <demo-block :title="t('customContent')">
<van-grid :border="false" :column-num="3"> <van-grid :border="false" :column-num="3">
<van-grid-item> <van-grid-item>
<van-image fit="contain" src="https://img.yzcdn.cn/vant/apple-1.jpg" /> <van-image
fit="contain"
src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
/>
</van-grid-item> </van-grid-item>
<van-grid-item> <van-grid-item>
<van-image fit="contain" src="https://img.yzcdn.cn/vant/apple-2.jpg" /> <van-image
fit="contain"
src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"
/>
</van-grid-item> </van-grid-item>
<van-grid-item> <van-grid-item>
<van-image fit="contain" src="https://img.yzcdn.cn/vant/apple-3.jpg" /> <van-image
fit="contain"
src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg"
/>
</van-grid-item> </van-grid-item>
</van-grid> </van-grid>
</demo-block> </demo-block>

View File

@ -126,7 +126,7 @@ exports[`should render demo and match snapshot 1`] = `
> >
<div class="van-grid-item__content van-grid-item__content--center"> <div class="van-grid-item__content van-grid-item__content--center">
<div class="van-image"> <div class="van-image">
<img src="https://img.yzcdn.cn/vant/apple-1.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >
@ -142,7 +142,7 @@ exports[`should render demo and match snapshot 1`] = `
> >
<div class="van-grid-item__content van-grid-item__content--center"> <div class="van-grid-item__content van-grid-item__content--center">
<div class="van-image"> <div class="van-image">
<img src="https://img.yzcdn.cn/vant/apple-2.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >
@ -158,7 +158,7 @@ exports[`should render demo and match snapshot 1`] = `
> >
<div class="van-grid-item__content van-grid-item__content--center"> <div class="van-grid-item__content van-grid-item__content--center">
<div class="van-image"> <div class="van-image">
<img src="https://img.yzcdn.cn/vant/apple-3.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >

View File

@ -31,7 +31,7 @@ Use `name` prop to set icon name or icon URL.
You can directly passing an image URL to the `name` props. You can directly passing an image URL to the `name` props.
```html ```html
<van-icon name="https://b.yzcdn.cn/vant/icon-demo-1126.png" /> <van-icon name="https://cdn.jsdelivr.net/npm/@vant/assets/icon-demo.png" />
``` ```
### Show Badge ### Show Badge

View File

@ -31,7 +31,7 @@ app.use(Icon);
你也可以直接在 `name` 属性中传入一个图片 URL 来作为图标。 你也可以直接在 `name` 属性中传入一个图片 URL 来作为图标。
```html ```html
<van-icon name="https://b.yzcdn.cn/vant/icon-demo-1126.png" /> <van-icon name="https://cdn.jsdelivr.net/npm/@vant/assets/icon-demo.png" />
``` ```
### 徽标提示 ### 徽标提示

View File

@ -63,7 +63,7 @@ const t = useTranslate({
const tab = ref(0); const tab = ref(0);
const demoIcon = 'chat-o'; const demoIcon = 'chat-o';
const demoImage = 'https://b.yzcdn.cn/vant/icon-demo-1126.png'; const demoImage = 'https://cdn.jsdelivr.net/npm/@vant/assets/icon-demo.png';
const copy = (icon: string, option: Record<string, unknown> = {}) => { const copy = (icon: string, option: Record<string, unknown> = {}) => {
let tag = `<van-icon name="${icon}"`; let tag = `<van-icon name="${icon}"`;

View File

@ -78,7 +78,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-col van-col--6"> <div class="van-col van-col--6">
<i class="van-badge__wrapper van-icon"> <i class="van-badge__wrapper van-icon">
<img class="van-icon__image" <img class="van-icon__image"
src="https://b.yzcdn.cn/vant/icon-demo-1126.png" src="https://cdn.jsdelivr.net/npm/@vant/assets/icon-demo.png"
> >
</i> </i>
</div> </div>

View File

@ -33,7 +33,7 @@ exports[`should render icon with local image correctly 1`] = `
exports[`should render icon with url name correctly 1`] = ` exports[`should render icon with url name correctly 1`] = `
<i class="van-badge__wrapper van-icon"> <i class="van-badge__wrapper van-icon">
<img class="van-icon__image" <img class="van-icon__image"
src="https://img.yzcdn.com/icon.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
> >
</i> </i>
`; `;

View File

@ -13,7 +13,7 @@ test('should render icon with builtin icon name correctly', () => {
test('should render icon with url name correctly', () => { test('should render icon with url name correctly', () => {
const wrapper = mount(Icon, { const wrapper = mount(Icon, {
props: { props: {
name: 'https://img.yzcdn.com/icon.jpg', name: 'https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg',
}, },
}); });
expect(wrapper.html()).toMatchSnapshot(); expect(wrapper.html()).toMatchSnapshot();

View File

@ -22,8 +22,8 @@ app.use(ImagePreview);
```js ```js
ImagePreview([ ImagePreview([
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
]); ]);
``` ```
@ -32,8 +32,8 @@ ImagePreview([
```js ```js
ImagePreview({ ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
startPosition: 1, startPosition: 1,
}); });
@ -46,8 +46,8 @@ After setting the `closeable` attribute, the close icon will be displayed in the
```js ```js
ImagePreview({ ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
closeable: true, closeable: true,
}); });
@ -60,8 +60,8 @@ import { Toast } from 'vant';
ImagePreview({ ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
onClose() { onClose() {
Toast('closed'); Toast('closed');
@ -74,8 +74,8 @@ ImagePreview({
```js ```js
const instance = ImagePreview({ const instance = ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
beforeClose: () => false, beforeClose: () => false,
}); });
@ -101,8 +101,8 @@ export default {
const show = ref(false); const show = ref(false);
const index = ref(0); const index = ref(0);
const images = [ const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
]; ];
const onChange = (newIndex) => { const onChange = (newIndex) => {
index.value = newIndex; index.value = newIndex;

View File

@ -11,7 +11,7 @@
```js ```js
import { ImagePreview } from 'vant'; import { ImagePreview } from 'vant';
ImagePreview(['https://img.yzcdn.cn/vant/apple-1.jpg']); ImagePreview(['https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg']);
``` ```
### 组件调用 ### 组件调用
@ -57,8 +57,8 @@ export default {
```js ```js
ImagePreview([ ImagePreview([
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
]); ]);
``` ```
@ -69,8 +69,8 @@ ImagePreview([
```js ```js
ImagePreview({ ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
startPosition: 1, startPosition: 1,
}); });
@ -83,8 +83,8 @@ ImagePreview({
```js ```js
ImagePreview({ ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
closeable: true, closeable: true,
}); });
@ -99,8 +99,8 @@ import { Toast } from 'vant';
ImagePreview({ ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
onClose() { onClose() {
Toast('关闭'); Toast('关闭');
@ -115,8 +115,8 @@ ImagePreview({
```js ```js
const instance = ImagePreview({ const instance = ImagePreview({
images: [ images: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
beforeClose: () => false, beforeClose: () => false,
}); });
@ -145,8 +145,8 @@ export default {
const show = ref(false); const show = ref(false);
const index = ref(0); const index = ref(0);
const images = [ const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
]; ];
const onChange = (newIndex) => { const onChange = (newIndex) => {
index.value = newIndex; index.value = newIndex;

View File

@ -33,10 +33,10 @@ const t = useTranslate({
}); });
const images = [ const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
'https://img.yzcdn.cn/vant/apple-3.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg',
'https://img.yzcdn.cn/vant/apple-4.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-4.jpeg',
]; ];
const show = ref(false); const show = ref(false);

View File

@ -79,7 +79,7 @@ exports[`zoom in and drag image to move 1`] = `
<div class="van-image van-image-preview__image" <div class="van-image van-image-preview__image"
style="transition-duration: .3s;" style="transition-duration: .3s;"
> >
<img src="https://img.yzcdn.cn/1.png" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >
@ -120,7 +120,7 @@ exports[`zoom in and drag image to move 2`] = `
<div class="van-image van-image-preview__image" <div class="van-image van-image-preview__image"
style="transition-duration: .3s;" style="transition-duration: .3s;"
> >
<img src="https://img.yzcdn.cn/1.png" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >

View File

@ -2,9 +2,9 @@ import { DOMWrapper } from '@vue/test-utils/dist/domWrapper';
import { trigger } from '../../../test'; import { trigger } from '../../../test';
export const images = [ export const images = [
'https://img.yzcdn.cn/1.png', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/2.png', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
'https://img.yzcdn.cn/3.png', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg',
]; ];
function triggerTwoFingerTouchmove( function triggerTwoFingerTouchmove(

View File

@ -21,7 +21,11 @@ app.use(VanImage);
### Basic Usage ### Basic Usage
```html ```html
<van-image width="100" height="100" src="https://img.yzcdn.cn/vant/cat.jpeg" /> <van-image
width="100"
height="100"
src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/>
``` ```
### Fit Mode ### Fit Mode
@ -33,7 +37,7 @@ Same as [object-fit](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit
width="10rem" width="10rem"
height="10rem" height="10rem"
fit="contain" fit="contain"
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -47,7 +51,7 @@ Same as [object-position](https://developer.mozilla.org/en-US/docs/Web/CSS/objec
height="10rem" height="10rem"
fit="cover" fit="cover"
position="left" position="left"
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -60,7 +64,7 @@ Show round image, it may not works at `fit=contain` and `fit=scale-down`.
round round
width="10rem" width="10rem"
height="10rem" height="10rem"
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -71,7 +75,7 @@ Show round image, it may not works at `fit=contain` and `fit=scale-down`.
width="100" width="100"
height="100" height="100"
lazy-load lazy-load
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```

View File

@ -23,7 +23,11 @@ app.use(VanImage);
基础用法与原生 `img` 标签一致,可以设置 `src``width``height``alt` 等原生属性。 基础用法与原生 `img` 标签一致,可以设置 `src``width``height``alt` 等原生属性。
```html ```html
<van-image width="100" height="100" src="https://img.yzcdn.cn/vant/cat.jpeg" /> <van-image
width="100"
height="100"
src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/>
``` ```
### 填充模式 ### 填充模式
@ -35,7 +39,7 @@ app.use(VanImage);
width="10rem" width="10rem"
height="10rem" height="10rem"
fit="contain" fit="contain"
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -49,7 +53,7 @@ app.use(VanImage);
height="10rem" height="10rem"
fit="cover" fit="cover"
position="left" position="left"
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -62,7 +66,7 @@ app.use(VanImage);
round round
width="10rem" width="10rem"
height="10rem" height="10rem"
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -75,7 +79,7 @@ app.use(VanImage);
width="100" width="100"
height="100" height="100"
lazy-load lazy-load
src="https://img.yzcdn.cn/vant/cat.jpeg" src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
``` ```
@ -92,7 +96,7 @@ app.use(Lazyload);
`Image` 组件提供了默认的加载中提示,支持通过 `loading` 插槽自定义内容。 `Image` 组件提供了默认的加载中提示,支持通过 `loading` 插槽自定义内容。
```html ```html
<van-image src="https://img.yzcdn.cn/vant/cat.jpeg"> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg">
<template v-slot:loading> <template v-slot:loading>
<van-loading type="spinner" size="20" /> <van-loading type="spinner" size="20" />
</template> </template>
@ -104,7 +108,7 @@ app.use(Lazyload);
`Image` 组件提供了默认的加载失败提示,支持通过 `error` 插槽自定义内容。 `Image` 组件提供了默认的加载失败提示,支持通过 `error` 插槽自定义内容。
```html ```html
<van-image src="https://img.yzcdn.cn/vant/cat.jpeg"> <van-image src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg">
<template v-slot:error>加载失败</template> <template v-slot:error>加载失败</template>
</van-image> </van-image>
``` ```

View File

@ -28,7 +28,7 @@ const t = useTranslate({
}, },
}); });
const image = 'https://img.yzcdn.cn/vant/cat.jpeg'; const image = 'https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg';
const fits = ['contain', 'cover', 'fill', 'none', 'scale-down'] as const; const fits = ['contain', 'cover', 'fill', 'none', 'scale-down'] as const;
const positions1 = ['left', 'center', 'right'] as const; const positions1 = ['left', 'center', 'right'] as const;
const positions2 = ['top', 'center', 'bottom'] as const; const positions2 = ['top', 'center', 'bottom'] as const;

View File

@ -6,7 +6,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100px; height: 100px;" style="width: 100px; height: 100px;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
> >
<div class="van-image__loading"> <div class="van-image__loading">
@ -24,7 +24,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >
@ -43,7 +43,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -62,7 +62,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: fill;" style="object-fit: fill;"
> >
@ -81,7 +81,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: none;" style="object-fit: none;"
> >
@ -100,7 +100,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: scale-down;" style="object-fit: scale-down;"
> >
@ -123,7 +123,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover; object-position: left;" style="object-fit: cover; object-position: left;"
> >
@ -145,7 +145,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover; object-position: center;" style="object-fit: cover; object-position: center;"
> >
@ -167,7 +167,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover; object-position: right;" style="object-fit: cover; object-position: right;"
> >
@ -189,7 +189,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain; object-position: top;" style="object-fit: contain; object-position: top;"
> >
@ -211,7 +211,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain; object-position: center;" style="object-fit: contain; object-position: center;"
> >
@ -233,7 +233,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain; object-position: bottom;" style="object-fit: contain; object-position: bottom;"
> >
@ -259,7 +259,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image van-image--round" <div class="van-image van-image--round"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >
@ -278,7 +278,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image van-image--round" <div class="van-image van-image--round"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -297,7 +297,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image van-image--round" <div class="van-image van-image--round"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: fill;" style="object-fit: fill;"
> >
@ -316,7 +316,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image van-image--round" <div class="van-image van-image--round"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: none;" style="object-fit: none;"
> >
@ -335,7 +335,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image van-image--round" <div class="van-image van-image--round"
style="width: 100%; height: 27vw;" style="width: 100%; height: 27vw;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: scale-down;" style="object-fit: scale-down;"
> >

View File

@ -34,8 +34,8 @@ export default {
setup() { setup() {
return { return {
imageList: [ imageList: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
}; };
}, },

View File

@ -38,8 +38,8 @@ export default {
setup() { setup() {
return { return {
imageList: [ imageList: [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
], ],
}; };
}, },

View File

@ -18,18 +18,18 @@ const t = useTranslate({
}); });
const imageList = [ const imageList = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
'https://img.yzcdn.cn/vant/apple-3.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg',
'https://img.yzcdn.cn/vant/apple-4.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-4.jpeg',
]; ];
const backgroundImageList = [ const backgroundImageList = [
'https://img.yzcdn.cn/vant/apple-5.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-5.jpeg',
'https://img.yzcdn.cn/vant/apple-6.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-6.jpeg',
]; ];
const componentImageList = [ const componentImageList = [
'https://img.yzcdn.cn/vant/apple-8.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-8.jpeg',
'https://img.yzcdn.cn/vant/apple-7.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-7.jpeg',
]; ];
</script> </script>

View File

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

View File

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

View File

@ -48,8 +48,8 @@ const preloadImage = () => {
const doge = new Image(); const doge = new Image();
const dogeFire = new Image(); const dogeFire = new Image();
doge.src = 'https://b.yzcdn.cn/vant/doge.png'; doge.src = 'https://cdn.jsdelivr.net/npm/@vant/assets/doge.png';
dogeFire.src = 'https://b.yzcdn.cn/vant/doge-fire.jpg'; dogeFire.src = 'https://cdn.jsdelivr.net/npm/@vant/assets/doge-fire.jpeg';
}; };
onMounted(preloadImage); onMounted(preloadImage);
@ -82,15 +82,21 @@ onMounted(preloadImage);
<template #pulling="{ distance }"> <template #pulling="{ distance }">
<img <img
class="doge" class="doge"
src="https://b.yzcdn.cn/vant/doge.png" src="https://cdn.jsdelivr.net/npm/@vant/assets/doge.png"
:style="{ transform: `scale(${distance / 80})` }" :style="{ transform: `scale(${distance / 80})` }"
/> />
</template> </template>
<template #loosing> <template #loosing>
<img src="https://b.yzcdn.cn/vant/doge.png" class="doge" /> <img
src="https://cdn.jsdelivr.net/npm/@vant/assets/doge.png"
class="doge"
/>
</template> </template>
<template #loading> <template #loading>
<img src="https://b.yzcdn.cn/vant/doge-fire.jpg" class="doge" /> <img
src="https://cdn.jsdelivr.net/npm/@vant/assets/doge-fire.jpeg"
class="doge"
/>
</template> </template>
<p>{{ tips }}</p> <p>{{ tips }}</p>
</van-pull-refresh> </van-pull-refresh>

View File

@ -121,8 +121,9 @@ export default {
const checked = ref('1'); const checked = ref('1');
return { return {
checked, checked,
activeIcon: 'https://img.yzcdn.cn/vant/user-active.png', activeIcon: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png', inactiveIcon:
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
}, },
}; };

View File

@ -131,8 +131,9 @@ export default {
const checked = ref('1'); const checked = ref('1');
return { return {
checked, checked,
activeIcon: 'https://img.yzcdn.cn/vant/user-active.png', activeIcon: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactiveIcon: 'https://img.yzcdn.cn/vant/user-inactive.png', inactiveIcon:
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
}, },
}; };

View File

@ -42,8 +42,9 @@ const radioLabel = ref('1');
const radioShape = ref('1'); const radioShape = ref('1');
const radioIconSize = ref('1'); const radioIconSize = ref('1');
const radioHorizontal = ref('1'); const radioHorizontal = ref('1');
const activeIcon = 'https://img.yzcdn.cn/vant/user-active.png'; const activeIcon = 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png';
const inactiveIcon = 'https://img.yzcdn.cn/vant/user-inactive.png'; const inactiveIcon =
'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png';
</script> </script>
<template> <template>

View File

@ -207,7 +207,7 @@ exports[`should render demo and match snapshot 1`] = `
aria-checked="true" aria-checked="true"
> >
<div class="van-radio__icon van-radio__icon--round van-radio__icon--checked"> <div class="van-radio__icon van-radio__icon--round van-radio__icon--checked">
<img src="https://img.yzcdn.cn/vant/user-active.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png">
</div> </div>
<span class="van-radio__label"> <span class="van-radio__label">
Radio 1 Radio 1
@ -219,7 +219,7 @@ exports[`should render demo and match snapshot 1`] = `
aria-checked="false" aria-checked="false"
> >
<div class="van-radio__icon van-radio__icon--round"> <div class="van-radio__icon van-radio__icon--round">
<img src="https://img.yzcdn.cn/vant/user-inactive.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png">
</div> </div>
<span class="van-radio__label"> <span class="van-radio__label">
Radio 2 Radio 2

View File

@ -109,15 +109,15 @@ export default {
const options = [ const options = [
{ {
name: 'Name', name: 'Name',
icon: 'https://img.yzcdn.cn/vant/custom-icon-fire.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-fire.png',
}, },
{ {
name: 'Name', name: 'Name',
icon: 'https://img.yzcdn.cn/vant/custom-icon-light.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-light.png',
}, },
{ {
name: 'Name', name: 'Name',
icon: 'https://img.yzcdn.cn/vant/custom-icon-water.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-water.png',
}, },
]; ];

View File

@ -119,15 +119,15 @@ export default {
const options = [ const options = [
{ {
name: '名称', name: '名称',
icon: 'https://img.yzcdn.cn/vant/custom-icon-fire.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-fire.png',
}, },
{ {
name: '名称', name: '名称',
icon: 'https://img.yzcdn.cn/vant/custom-icon-light.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-light.png',
}, },
{ {
name: '名称', name: '名称',
icon: 'https://img.yzcdn.cn/vant/custom-icon-water.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-water.png',
}, },
]; ];

View File

@ -73,15 +73,15 @@ const multiLineOptions = computed(() => [
const customIconOptions = computed(() => [ const customIconOptions = computed(() => [
{ {
name: t('name'), name: t('name'),
icon: 'https://img.yzcdn.cn/vant/custom-icon-fire.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-fire.png',
}, },
{ {
name: t('name'), name: t('name'),
icon: 'https://img.yzcdn.cn/vant/custom-icon-light.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-light.png',
}, },
{ {
name: t('name'), name: t('name'),
icon: 'https://img.yzcdn.cn/vant/custom-icon-water.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/custom-icon-water.png',
}, },
]); ]);

View File

@ -35,7 +35,7 @@ const show = ref(false);
<van-switch v-model="show" size="24px" /> <van-switch v-model="show" size="24px" />
<van-skeleton title avatar :row="3" :loading="!show"> <van-skeleton title avatar :row="3" :loading="!show">
<div class="demo-preview"> <div class="demo-preview">
<img src="https://img.yzcdn.cn/vant/logo.png" /> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/logo.png" />
<div class="demo-content"> <div class="demo-content">
<h3>{{ t('title') }}</h3> <h3>{{ t('title') }}</h3>
<p>{{ t('desc') }}</p> <p>{{ t('desc') }}</p>

View File

@ -43,7 +43,7 @@ app.use(SwipeCell);
desc="Description" desc="Description"
title="Title" title="Title"
class="goods-card" class="goods-card"
thumb="https://img.yzcdn.cn/vant/cat.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
<template #right> <template #right>
<van-button square text="Delete" type="danger" class="delete-button" /> <van-button square text="Delete" type="danger" class="delete-button" />

View File

@ -47,7 +47,7 @@ app.use(SwipeCell);
desc="描述信息" desc="描述信息"
title="商品标题" title="商品标题"
class="goods-card" class="goods-card"
thumb="https://img.yzcdn.cn/vant/cat.jpeg" thumb="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
/> />
<template #right> <template #right>
<van-button square text="删除" type="danger" class="delete-button" /> <van-button square text="删除" type="danger" class="delete-button" />
@ -179,7 +179,6 @@ const swipeCellRef = ref<SwipeCellInstance>();
swipeCellRef.value?.close(); swipeCellRef.value?.close();
``` ```
## 常见问题 ## 常见问题
### 在桌面端无法操作组件? ### 在桌面端无法操作组件?

View File

@ -29,7 +29,7 @@ const t = useTranslate({
}, },
}); });
const imageURL = 'https://img.yzcdn.cn/vant/ipad.jpeg'; const imageURL = 'https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg';
const beforeClose = ({ position }: { position: string }) => { const beforeClose = ({ position }: { position: string }) => {
switch (position) { switch (position) {

View File

@ -63,7 +63,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image" <div class="van-image"
style="width: 100%; height: 100%;" style="width: 100%; height: 100%;"
> >
<img src="https://img.yzcdn.cn/vant/ipad.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >

View File

@ -58,8 +58,8 @@ Use `lazy-render` prop to enable lazy rendering.
export default { export default {
setup() { setup() {
const images = [ const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
]; ];
return { images }; return { images };
}, },

View File

@ -58,8 +58,8 @@ app.use(SwipeItem);
export default { export default {
setup() { setup() {
const images = [ const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
]; ];
return { images }; return { images };
}, },

View File

@ -24,10 +24,10 @@ const t = useTranslate({
}); });
const images = [ const images = [
'https://img.yzcdn.cn/vant/apple-1.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg',
'https://img.yzcdn.cn/vant/apple-2.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg',
'https://img.yzcdn.cn/vant/apple-3.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-3.jpeg',
'https://img.yzcdn.cn/vant/apple-4.jpg', 'https://cdn.jsdelivr.net/npm/@vant/assets/apple-4.jpeg',
]; ];
const onChange = (index: number) => Toast(t('message') + index); const onChange = (index: number) => Toast(t('message') + index);

View File

@ -49,12 +49,12 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-swipe-item" <div class="van-swipe-item"
style="width: 100px;" style="width: 100px;"
> >
<img src="https://img.yzcdn.cn/vant/apple-1.jpg"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg">
</div> </div>
<div class="van-swipe-item" <div class="van-swipe-item"
style="width: 100px;" style="width: 100px;"
> >
<img src="https://img.yzcdn.cn/vant/apple-2.jpg"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg">
</div> </div>
<div class="van-swipe-item" <div class="van-swipe-item"
style="width: 100px;" style="width: 100px;"
@ -63,7 +63,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-swipe-item" <div class="van-swipe-item"
style="width: 100px;" style="width: 100px;"
> >
<img src="https://img.yzcdn.cn/vant/apple-4.jpg"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-4.jpeg">
</div> </div>
</div> </div>
<div class="van-swipe__indicators"> <div class="van-swipe__indicators">

View File

@ -98,8 +98,8 @@ export default {
setup() { setup() {
const active = ref(0); const active = ref(0);
const icon = { const icon = {
active: 'https://img.yzcdn.cn/vant/user-active.png', active: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactive: 'https://img.yzcdn.cn/vant/user-inactive.png', inactive: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
return { return {
icon, icon,

View File

@ -104,8 +104,8 @@ export default {
setup() { setup() {
const active = ref(0); const active = ref(0);
const icon = { const icon = {
active: 'https://img.yzcdn.cn/vant/user-active.png', active: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactive: 'https://img.yzcdn.cn/vant/user-inactive.png', inactive: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
return { return {
icon, icon,

View File

@ -30,8 +30,8 @@ const active5 = ref(0);
const activeName = ref('home'); const activeName = ref('home');
const icon = { const icon = {
active: 'https://img.yzcdn.cn/vant/user-active.png', active: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png',
inactive: 'https://img.yzcdn.cn/vant/user-inactive.png', inactive: 'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png',
}; };
const onChange = (index: number) => { const onChange = (index: number) => {

View File

@ -193,7 +193,7 @@ exports[`should render demo and match snapshot 1`] = `
aria-selected="true" aria-selected="true"
> >
<div class="van-badge__wrapper van-tabbar-item__icon"> <div class="van-badge__wrapper van-tabbar-item__icon">
<img src="https://img.yzcdn.cn/vant/user-active.png"> <img src="https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png">
<div class="van-badge van-badge--top-right van-badge--fixed"> <div class="van-badge van-badge--top-right van-badge--fixed">
3 3
</div> </div>

View File

@ -50,7 +50,7 @@ Toast({
Toast({ Toast({
message: 'Custom Image', message: 'Custom Image',
icon: 'https://img.yzcdn.cn/vant/logo.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
}); });
Toast.loading({ Toast.loading({

View File

@ -56,7 +56,7 @@ Toast({
Toast({ Toast({
message: '自定义图片', message: '自定义图片',
icon: 'https://img.yzcdn.cn/vant/logo.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
}); });
``` ```

View File

@ -83,7 +83,7 @@ const showIconToast = () => {
const showImageToast = () => { const showImageToast = () => {
Toast({ Toast({
message: t('customImage'), message: t('customImage'),
icon: 'https://img.yzcdn.cn/vant/logo.png', icon: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
}); });
}; };

View File

@ -115,11 +115,11 @@ export default {
<template #content> <template #content>
<van-image <van-image
v-if="activeIndex === 0" v-if="activeIndex === 0"
src="https://img.yzcdn.cn/vant/apple-1.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
/> />
<van-image <van-image
v-if="activeIndex === 1" v-if="activeIndex === 1"
src="https://img.yzcdn.cn/vant/apple-2.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"
/> />
</template> </template>
</van-tree-select> </van-tree-select>

View File

@ -121,11 +121,11 @@ export default {
<template #content> <template #content>
<van-image <van-image
v-if="activeIndex === 0" v-if="activeIndex === 0"
src="https://img.yzcdn.cn/vant/apple-1.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
/> />
<van-image <van-image
v-if="activeIndex === 1" v-if="activeIndex === 1"
src="https://img.yzcdn.cn/vant/apple-2.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"
/> />
</template> </template>
</van-tree-select> </van-tree-select>

View File

@ -73,12 +73,12 @@ const badgeItems = computed(() => {
<van-image <van-image
v-if="activeIndex3 === 0" v-if="activeIndex3 === 0"
:show-loading="false" :show-loading="false"
src="https://img.yzcdn.cn/vant/apple-1.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
/> />
<van-image <van-image
v-if="activeIndex3 === 1" v-if="activeIndex3 === 1"
:show-loading="false" :show-loading="false"
src="https://img.yzcdn.cn/vant/apple-2.jpg" src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-2.jpeg"
/> />
</template> </template>
</van-tree-select> </van-tree-select>

View File

@ -135,7 +135,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-tree-select__content"> <div class="van-tree-select__content">
<div class="van-image"> <div class="van-image">
<img src="https://img.yzcdn.cn/vant/apple-1.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/apple-1.jpeg"
class="van-image__img" class="van-image__img"
> >
</div> </div>

View File

@ -50,7 +50,7 @@ import { ref } from 'vue';
export default { export default {
setup() { setup() {
const fileList = ref([ const fileList = ref([
{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
{ url: 'https://cloud-image', isImage: true }, { url: 'https://cloud-image', isImage: true },
]); ]);
@ -74,12 +74,12 @@ export default {
setup() { setup() {
const fileList = ref([ const fileList = ref([
{ {
url: 'https://img.yzcdn.cn/vant/leaf.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg',
status: 'uploading', status: 'uploading',
message: 'Uploading...', message: 'Uploading...',
}, },
{ {
url: 'https://img.yzcdn.cn/vant/tree.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg',
status: 'failed', status: 'failed',
message: 'Failed', message: 'Failed',
}, },
@ -263,16 +263,16 @@ import { Toast } from 'vant';
export default { export default {
setup() { setup() {
const fileList = ref([ const fileList = ref([
{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
{ {
url: 'https://img.yzcdn.cn/vant/sand.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg',
deletable: true, deletable: true,
beforeDelete: () => { beforeDelete: () => {
Toast('Customize the events and styles of a single preview image'); Toast('Customize the events and styles of a single preview image');
}, },
}, },
{ {
url: 'https://img.yzcdn.cn/vant/tree.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg',
deletable: true, deletable: true,
imageFit: 'contain', imageFit: 'contain',
previewSize: 120, previewSize: 120,

View File

@ -55,7 +55,7 @@ import { ref } from 'vue';
export default { export default {
setup() { setup() {
const fileList = ref([ const fileList = ref([
{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
// Uploader 根据文件后缀来判断是否为图片文件 // Uploader 根据文件后缀来判断是否为图片文件
// 如果图片 URL 中不包含类型信息,可以添加 isImage 标记来声明 // 如果图片 URL 中不包含类型信息,可以添加 isImage 标记来声明
{ url: 'https://cloud-image', isImage: true }, { url: 'https://cloud-image', isImage: true },
@ -83,12 +83,12 @@ export default {
setup() { setup() {
const fileList = ref([ const fileList = ref([
{ {
url: 'https://img.yzcdn.cn/vant/leaf.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg',
status: 'uploading', status: 'uploading',
message: '上传中...', message: '上传中...',
}, },
{ {
url: 'https://img.yzcdn.cn/vant/tree.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg',
status: 'failed', status: 'failed',
message: '上传失败', message: '上传失败',
}, },
@ -284,16 +284,16 @@ import { Toast } from 'vant';
export default { export default {
setup() { setup() {
const fileList = ref([ const fileList = ref([
{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
{ {
url: 'https://img.yzcdn.cn/vant/sand.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg',
deletable: true, deletable: true,
beforeDelete: () => { beforeDelete: () => {
Toast('自定义单个预览图片的事件和样式'); Toast('自定义单个预览图片的事件和样式');
}, },
}, },
{ {
url: 'https://img.yzcdn.cn/vant/tree.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg',
deletable: true, deletable: true,
imageFit: 'contain', imageFit: 'contain',
previewSize: 120, previewSize: 120,

View File

@ -46,27 +46,31 @@ const t = useTranslate({
}); });
const fileList = ref([ const fileList = ref([
{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
{ url: 'https://img.yzcdn.cn/vant/tree.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg' },
]); ]);
const fileList2 = ref([{ url: 'https://img.yzcdn.cn/vant/sand.jpg' }]); const fileList2 = ref([
{ url: 'https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg' },
]);
const fileList3 = ref([]); const fileList3 = ref([]);
const fileList4 = ref([{ url: 'https://img.yzcdn.cn/vant/sand.jpg' }]); const fileList4 = ref([
{ url: 'https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg' },
]);
const fileList5 = ref<UploaderFileListItem[]>([ const fileList5 = ref<UploaderFileListItem[]>([
{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg' },
{ {
url: 'https://img.yzcdn.cn/vant/sand.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg',
deletable: true, deletable: true,
beforeDelete: () => { beforeDelete: () => {
Toast(t('deleteMessage')); Toast(t('deleteMessage'));
}, },
}, },
{ {
url: 'https://img.yzcdn.cn/vant/tree.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg',
deletable: true, deletable: true,
imageFit: 'contain', imageFit: 'contain',
previewSize: 120, previewSize: 120,
@ -75,12 +79,12 @@ const fileList5 = ref<UploaderFileListItem[]>([
const statusFileList = ref<UploaderFileListItem[]>([ const statusFileList = ref<UploaderFileListItem[]>([
{ {
url: 'https://img.yzcdn.cn/vant/leaf.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg',
status: 'uploading', status: 'uploading',
message: t('uploading'), message: t('uploading'),
}, },
{ {
url: 'https://img.yzcdn.cn/vant/tree.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg',
status: 'failed', status: 'failed',
message: t('failed'), message: t('failed'),
}, },
@ -88,7 +92,7 @@ const statusFileList = ref<UploaderFileListItem[]>([
const previewCoverFiles = ref<UploaderFileListItem[]>([ const previewCoverFiles = ref<UploaderFileListItem[]>([
{ {
url: 'https://img.yzcdn.cn/vant/leaf.jpg', url: 'https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg',
file: { file: {
name: t('imageName'), name: t('imageName'),
} as File, } as File,

View File

@ -20,7 +20,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/leaf.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -40,7 +40,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/tree.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -75,7 +75,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/leaf.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -106,7 +106,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/tree.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -147,7 +147,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/sand.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -182,7 +182,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/sand.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -240,7 +240,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/leaf.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -308,7 +308,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/leaf.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/leaf.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -320,7 +320,7 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/sand.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/sand.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -342,7 +342,7 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-image van-uploader__preview-image" <div class="van-image van-uploader__preview-image"
style="width: 120px; height: 120px;" style="width: 120px; height: 120px;"
> >
<img src="https://img.yzcdn.cn/vant/tree.jpg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/tree.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >

View File

@ -7,7 +7,7 @@ exports[`delete preview image 1`] = `
<div class="van-image van-uploader__preview-image" <div class="van-image van-uploader__preview-image"
style="width: 30px; height: 30px;" style="width: 30px; height: 30px;"
> >
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -106,7 +106,7 @@ exports[`image-fit prop 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: contain;" style="object-fit: contain;"
> >
@ -141,7 +141,7 @@ exports[`preview-cover slot 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -164,7 +164,7 @@ exports[`preview-cover slot 1`] = `
</div> </div>
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -238,7 +238,7 @@ exports[`render preview image 1`] = `
<div class="van-uploader__wrapper"> <div class="van-uploader__wrapper">
<div class="van-uploader__preview"> <div class="van-uploader__preview">
<div class="van-image van-uploader__preview-image"> <div class="van-image van-uploader__preview-image">
<img src="https://img.yzcdn.cn/vant/cat.jpeg" <img src="https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg"
class="van-image__img" class="van-image__img"
style="object-fit: cover;" style="object-fit: cover;"
> >
@ -261,7 +261,7 @@ exports[`render preview image 1`] = `
<i class="van-badge__wrapper van-icon van-icon-description van-uploader__file-icon"> <i class="van-badge__wrapper van-icon van-icon-description van-uploader__file-icon">
</i> </i>
<div class="van-uploader__file-name van-ellipsis"> <div class="van-uploader__file-name van-ellipsis">
https://img.yzcdn.cn/vant/test.pdf https://cdn.jsdelivr.net/npm/@vant/assets/test.pdf
</div> </div>
</div> </div>
<div role="button" <div role="button"

View File

@ -6,8 +6,8 @@ const mockFileDataUrl = 'data:image/test';
const mockFile = new File([new ArrayBuffer(10000)], 'test.jpg', { const mockFile = new File([new ArrayBuffer(10000)], 'test.jpg', {
type: 'test', type: 'test',
}); });
const IMAGE = 'https://img.yzcdn.cn/vant/cat.jpeg'; const IMAGE = 'https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg';
const PDF = 'https://img.yzcdn.cn/vant/test.pdf'; const PDF = 'https://cdn.jsdelivr.net/npm/@vant/assets/test.pdf';
function mockFileReader() { function mockFileReader() {
function mockReadAsText(this: FileReader) { function mockReadAsText(this: FileReader) {
@ -293,8 +293,8 @@ test('render preview image', async () => {
const wrapper = mount(Uploader, { const wrapper = mount(Uploader, {
props: { props: {
modelValue: [ modelValue: [
{ url: 'https://img.yzcdn.cn/vant/cat.jpeg' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg' },
{ url: 'https://img.yzcdn.cn/vant/test.pdf' }, { url: 'https://cdn.jsdelivr.net/npm/@vant/assets/test.pdf' },
{ file: mockFile }, { file: mockFile },
], ],
}, },
@ -307,7 +307,9 @@ test('image-fit prop', () => {
const wrapper = mount(Uploader, { const wrapper = mount(Uploader, {
props: { props: {
imageFit: 'contain', imageFit: 'contain',
modelValue: [{ url: 'https://img.yzcdn.cn/vant/cat.jpeg' }], modelValue: [
{ url: 'https://cdn.jsdelivr.net/npm/@vant/assets/cat.jpeg' },
],
}, },
}); });

View File

@ -31,15 +31,15 @@ export default {
title: 'Vant 3', title: 'Vant 3',
subtitle: '(适用于 Vue 3', subtitle: '(适用于 Vue 3',
description: '轻量、可靠的移动端组件库', description: '轻量、可靠的移动端组件库',
logo: 'https://img.yzcdn.cn/vant/logo.png', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
langLabel: '中', langLabel: '中',
links: [ links: [
{ {
logo: 'https://b.yzcdn.cn/vant/logo/weapp.svg', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/weapp.svg',
url: 'https://vant-contrib.gitee.io/vant-weapp/', url: 'https://vant-contrib.gitee.io/vant-weapp/',
}, },
{ {
logo: 'https://b.yzcdn.cn/vant/logo/github.svg', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/github.svg',
url: 'https://github.com/youzan/vant', url: 'https://github.com/youzan/vant',
}, },
], ],
@ -478,11 +478,11 @@ export default {
title: 'Vant 3', title: 'Vant 3',
subtitle: ' (for Vue 3)', subtitle: ' (for Vue 3)',
description: 'Mobile UI Components built on Vue', description: 'Mobile UI Components built on Vue',
logo: 'https://img.yzcdn.cn/vant/logo.png', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
langLabel: 'EN', langLabel: 'EN',
links: [ links: [
{ {
logo: 'https://b.yzcdn.cn/vant/logo/github.svg', logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/github.svg',
url: 'https://github.com/youzan/vant', url: 'https://github.com/youzan/vant',
}, },
], ],