Compare commits

...

4 Commits

Author SHA1 Message Date
chenjiajian
2897145ea0
fix(form): 修复 form demo 的 submit 事件拼写错误 (#8543) 2021-04-16 11:44:38 +08:00
neverland
6aac1ee891
fix(ShareSheet): duration prop not work (#8542) 2021-04-16 11:37:06 +08:00
neverland
b124b4ff79
Update changelog.zh-CN.md 2021-04-14 16:24:10 +08:00
neverland
d5c7bd133f
chore: update Vue version in peerDeps 2021-04-14 16:23:12 +08:00
4 changed files with 5 additions and 4 deletions

View File

@ -2,7 +2,7 @@
### 提示
当前文档为 Vant 2 的更新日志,如需查询 Vant 3 的更新内容,请访问 [Vant 3 更新日志](https://youzan.github.io/vant/next/#/zh-CN/changelog)。
当前文档为 Vant 2 的更新日志,如需查询 Vant 3 的更新内容,请访问 [Vant 3 更新日志](https://youzan.github.io/vant/v3/#/zh-CN/changelog)。
### 介绍
@ -12,7 +12,7 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
- 修订号:每周发布,包含新特性和问题修复。
- 次版本号:每隔一至二个月发布,包含新特性和较大的功能更新,向下兼容。
- 主版本号:发布时间不定,包含不兼容更新,预计下一个主版本会与 Vue 3.0 同期发布
- 主版本号:无固定发布时间,包含不兼容更新。
## 更新内容

View File

@ -60,7 +60,7 @@
"vue-lazyload": "1.2.3"
},
"peerDependencies": {
"vue": ">= 2.5.22"
"vue": ">= 2.6.0"
},
"devDependencies": {
"@vant/cli": "^2.10.0",

View File

@ -1,6 +1,6 @@
<template>
<demo-block :title="t('title')">
<van-form validate-first @sumbit="onSubmit" @failed="onFailed">
<van-form validate-first @submit="onSubmit" @failed="onFailed">
<van-field
v-model="value1"
name="pattern"

View File

@ -24,6 +24,7 @@ export default createComponent({
props: {
...popupMixinProps,
title: String,
duration: String,
cancelText: String,
description: String,
getContainer: [String, Function],