Merge branch 'dev' into feature/form

This commit is contained in:
陈嘉涵 2020-02-13 10:08:16 +08:00
commit 2af35bfdbc
8 changed files with 27 additions and 12 deletions

View File

@ -19,17 +19,17 @@
### 快速上手 ### 快速上手
请参考 [快速上手](#/zh-CN/quickstart) 章节 请参考[快速上手](#/zh-CN/quickstart)章节
### 贡献代码 ### 贡献代码
修改代码请阅读我们的 [开发指南](#/zh-CN/contribution) 修改代码请阅读我们的[开发指南](#/zh-CN/contribution)
使用过程中发现任何问题都可以提 [Issue](https://github.com/youzan/vant/issues) 给我们,当然,我们也非常欢迎你给我们发 [PR](https://github.com/youzan/vant/pulls) 使用过程中发现任何问题都可以提 [Issue](https://github.com/youzan/vant/issues) 给我们,当然,我们也非常欢迎你给我们发 [PR](https://github.com/youzan/vant/pulls)
### 浏览器支持 ### 浏览器支持
现代浏览器以及 Android 4.0+, iOS 8.0+ 现代浏览器以及 Android 4.0+, iOS 8.0+
### 加入我们 ### 加入我们

View File

@ -63,7 +63,7 @@
"vue": ">= 2.5.22" "vue": ">= 2.5.22"
}, },
"devDependencies": { "devDependencies": {
"@vant/cli": "^2.2.2", "@vant/cli": "^2.2.3",
"vue": "^2.6.11", "vue": "^2.6.11",
"vue-template-compiler": "^2.6.11" "vue-template-compiler": "^2.6.11"
}, },

View File

@ -1,5 +1,11 @@
# 更新日志 # 更新日志
### [v2.2.3]
`2020-02-13`
- 链接颜色调整为蓝色
### [v2.2.2] ### [v2.2.2]
`2020-02-05` `2020-02-05`

View File

@ -1,6 +1,6 @@
{ {
"name": "@vant/cli", "name": "@vant/cli",
"version": "2.2.2", "version": "2.2.3",
"description": "", "description": "",
"main": "lib/index.js", "main": "lib/index.js",
"typings": "lib/index.d.ts", "typings": "lib/index.d.ts",

View File

@ -38,8 +38,16 @@ export default {
a { a {
margin: 0 1px; margin: 0 1px;
color: @van-doc-green; color: @van-doc-blue;
-webkit-font-smoothing: auto; -webkit-font-smoothing: auto;
&:hover {
color: darken(@van-doc-blue, 10%);
}
&:active {
color: darken(@van-doc-blue, 20%);
}
} }
h1, h1,

View File

@ -2,5 +2,6 @@ import Vue from 'vue';
export class VanComponent { export class VanComponent {
static name: string; static name: string;
static install(vue: typeof Vue): void; static install(vue: typeof Vue): void;
} }

2
types/dialog.d.ts vendored
View File

@ -34,7 +34,7 @@ export interface Dialog {
install(): void; install(): void;
setDefaultOptions(options: DialogOptions): void; setDefaultOptions(options: DialogOptions): void;
resetDefaultOptions(): void; resetDefaultOptions(): void;
Component: VanComponent; Component: typeof VanComponent;
} }
declare module 'vue/types/vue' { declare module 'vue/types/vue' {

View File

@ -1634,10 +1634,10 @@
semver "^6.3.0" semver "^6.3.0"
tsutils "^3.17.1" tsutils "^3.17.1"
"@vant/cli@^2.2.2": "@vant/cli@^2.2.3":
version "2.2.2" version "2.2.3"
resolved "https://registry.yarnpkg.com/@vant/cli/-/cli-2.2.2.tgz#e6c43dcb95f8e42d31981a4f9612443efceec80a" resolved "https://registry.yarnpkg.com/@vant/cli/-/cli-2.2.3.tgz#cd49f96c886a4ec9d8485f1ff15fb930ea05d21a"
integrity sha512-lYVYrarN+FMopmTRQJbj0uZLbBBAhuWF3F2fQVYLU852VLZJSrui1HHQwS+WCJ96Vb8HaNdYsGEkzfVT8xrq6Q== integrity sha512-aSNzqQ5ef500S6oOYoV5OKD1/XUFQnqEFDUHX6f6dY1ncFB4g0QnCxy7w75ZkteOhAy4uuQDZBZSY4dj2PHNNw==
dependencies: dependencies:
"@babel/core" "^7.8.4" "@babel/core" "^7.8.4"
"@babel/plugin-syntax-jsx" "^7.8.3" "@babel/plugin-syntax-jsx" "^7.8.3"