From ea896803a04aabf19eb887a95b9d0cf6758384ac Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Sat, 24 Oct 2020 17:38:14 +0800 Subject: [PATCH] docs: add "adapt to PC browsers" --- docs/markdown/advanced-usage.en-US.md | 20 +++++++++++++++++--- docs/markdown/advanced-usage.zh-CN.md | 4 ++-- src/locale/README.md | 2 +- 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/docs/markdown/advanced-usage.en-US.md b/docs/markdown/advanced-usage.en-US.md index 67bcf2556..bb588bbb7 100644 --- a/docs/markdown/advanced-usage.en-US.md +++ b/docs/markdown/advanced-usage.en-US.md @@ -2,16 +2,16 @@ ## Browser adaptation -### Rem units +### Rem Units -Vant use `px` as size units by default,you can use tools such as `postcss-pxtorem` to transform units to `rem`. +Vant uses `px` unit by default,you can use tools such as `postcss-pxtorem` to transform units to `rem`. - [postcss-pxtorem](https://github.com/cuth/postcss-pxtorem) - [lib-flexible](https://github.com/amfe/lib-flexible) #### PostCSS Config -postcss config example: +Postcss config example: ```js module.exports = { @@ -26,3 +26,17 @@ module.exports = { }, }; ``` + +### Adapt to PC Browsers + +Vant is a mobile-first component library, if you want to use Vant in PC browsers, you can use the [@vant/touch-emulator](https://github.com/youzan/vant/tree/dev/packages/vant-touch-emulator) module. This module will automatically convert the mouse events of the PC browser into the touch events of the mobile browser. + +```bash +# Install +npm i @vant/touch-emulator -S +``` + +```js +// Just import this module, then Vant works in PC browser +import '@vant/touch-emulator'; +``` diff --git a/docs/markdown/advanced-usage.zh-CN.md b/docs/markdown/advanced-usage.zh-CN.md index d68d94c7c..a3eb45883 100644 --- a/docs/markdown/advanced-usage.zh-CN.md +++ b/docs/markdown/advanced-usage.zh-CN.md @@ -35,9 +35,9 @@ module.exports = { ### 桌面端适配 -Vant 是一个面向移动端的组件库,因此默认只适配了移动端设备,这意味着组件只监听了移动端的`touch`事件,没有监听桌面端的`mouse`事件。 +Vant 是一个面向移动端的组件库,因此默认只适配了移动端设备,这意味着组件只监听了移动端的 `touch` 事件,没有监听桌面端的 `mouse` 事件。 -如果你需要在桌面端使用 Vant,可以引入我们提供的 [@vant/touch-emulator](https://github.com/youzan/vant/tree/dev/packages/vant-touch-emulator),这个库会在桌面端自动将`mouse`事件转换成对应的`touch`事件,使得组件能够在桌面端使用。 +如果你需要在桌面端使用 Vant,可以引入我们提供的 [@vant/touch-emulator](https://github.com/youzan/vant/tree/dev/packages/vant-touch-emulator),这个库会在桌面端自动将 `mouse` 事件转换成对应的 `touch` 事件,使得组件能够在桌面端使用。 ```bash # 安装模块 diff --git a/src/locale/README.md b/src/locale/README.md index 34d053770..5b7dd159d 100644 --- a/src/locale/README.md +++ b/src/locale/README.md @@ -2,7 +2,7 @@ ### Intro -The default language of Vant is Chinese. If you want to use other languages, you can follow the instructions below. +Vant uses Chinese as the default language. If you want to use other languages, please follow the instructions below. ## Usage