mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[Doc] fix links (#3663)
This commit is contained in:
parent
ddb24e6762
commit
96458cce9b
@ -61,7 +61,7 @@ npm run dev
|
||||
|
||||
### 目录结构
|
||||
|
||||
- 仓库的组件代码位于 packages 下,每个组件一个文件夹
|
||||
- 仓库的组件代码位于 src 下,每个组件一个文件夹
|
||||
- docs 目录下是文档网站的代码,本地开发时可以在目录下运行 npm run dev 开启文档网站
|
||||
|
||||
项目目录大致如下:
|
||||
@ -70,7 +70,7 @@ npm run dev
|
||||
vant
|
||||
├─ build # 构建脚本
|
||||
├─ docs # 文档网站
|
||||
├─ packages # 组件文件
|
||||
├─ src # 组件文件
|
||||
├─ test # 单元测试
|
||||
└─ types # 类型定义
|
||||
```
|
||||
@ -80,7 +80,7 @@ vant
|
||||
添加新组件时,请按照下面的目录结构组织文件,并在 `docs/src/doc.config.js` 中配置组件名称
|
||||
|
||||
```
|
||||
packages
|
||||
src
|
||||
|- button
|
||||
| ├─ demo # 示例代码
|
||||
| ├─ test # 单元测试
|
||||
|
@ -8,7 +8,7 @@ Vant provides a set of default themes, if you want to custom the theme color or
|
||||
|
||||
Vant use [Less](http://lesscss.org/) as css preprocessor,you can modify less variables to custom theme.
|
||||
|
||||
There are some basic variables below, all available variables could be found in [var.less](https://github.com/youzan/vant/blob/dev/packages/style/var.less)。
|
||||
There are some basic variables below, all available variables could be found in [var.less](https://github.com/youzan/vant/blob/dev/src/style/var.less)。
|
||||
|
||||
```less
|
||||
// color variables
|
||||
|
@ -12,7 +12,7 @@ Vant 提供了一套默认主题,CSS 命名采用 BEM 的风格,方便使用
|
||||
|
||||
Vant 使用了 [Less](http://lesscss.org/) 对样式进行预处理,并内置了一些样式变量,通过替换样式变量即可定制你自己需要的主题。
|
||||
|
||||
下面是一些基本的样式变量,所有可用的颜色变量请参考 [配置文件](https://github.com/youzan/vant/blob/dev/packages/style/var.less)。
|
||||
下面是一些基本的样式变量,所有可用的颜色变量请参考 [配置文件](https://github.com/youzan/vant/blob/dev/src/style/var.less)。
|
||||
|
||||
```less
|
||||
// color variables
|
||||
|
@ -100,7 +100,7 @@ Example of `AreaList`
|
||||
}
|
||||
```
|
||||
|
||||
All code of China: [Area.json](https://github.com/youzan/vant/blob/dev/packages/area/demo/area-en.js)
|
||||
All code of China: [Area.json](https://github.com/youzan/vant/blob/dev/src/area/demo/area-en.js)
|
||||
|
||||
### argument of callback function confirm
|
||||
|
||||
|
@ -105,7 +105,7 @@ Vue.use(Area);
|
||||
}
|
||||
```
|
||||
|
||||
完整数据见 [Area.json](https://github.com/youzan/vant/blob/dev/packages/area/demo/area.js)
|
||||
完整数据见 [Area.json](https://github.com/youzan/vant/blob/dev/src/area/demo/area.js)
|
||||
|
||||
### 点击完成时返回的数据格式
|
||||
|
||||
|
@ -45,4 +45,4 @@ Current supported languages:
|
||||
| English | en-US |
|
||||
| Turkish | tr-TR |
|
||||
|
||||
View all language configs [Here](https://github.com/youzan/vant/tree/dev/packages/locale/lang).
|
||||
View all language configs [Here](https://github.com/youzan/vant/tree/dev/src/locale/lang).
|
||||
|
@ -45,4 +45,4 @@ Locale.add(messages);
|
||||
| 英语 | en-US |
|
||||
| 土耳其语 | tr-TR |
|
||||
|
||||
在 [这里](https://github.com/youzan/vant/tree/dev/packages/locale/lang) 查看所有的 i18n 配置文件。
|
||||
在 [这里](https://github.com/youzan/vant/tree/dev/src/locale/lang) 查看所有的 i18n 配置文件。
|
||||
|
Loading…
x
Reference in New Issue
Block a user