chore: use useWindowSize in convertVw (#9854)

This commit is contained in:
neverland 2021-11-13 18:45:07 +08:00 committed by GitHub
parent d5be481eab
commit b8729d8ffb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 43 additions and 26 deletions

View File

@ -41,13 +41,19 @@
## Install ## Install
Using `npm` to install:
```bash ```bash
# install Vant 2 for Vue 2 project # install Vant 2 for Vue 2 project
npm i vant@2 npm i vant@2
# install Vant 3 for Vue 3 project # install Vant 3 for Vue 3 project
npm i vant@3 npm i vant@3
```
Using `yarn` or `pnpm`:
```bash
# with yarn # with yarn
yarn add vant@3 yarn add vant@3

View File

@ -45,13 +45,19 @@ Vant 是**有赞前端团队**开源的移动端组件库,于 2017 年开源
## 安装 ## 安装
在现有项目中使用 Vant 时,可以通过 `npm` 进行安装:
```bash ```bash
# Vue 2 项目,安装 Vant 2 # Vue 2 项目,安装 Vant 2
npm i vant@2 npm i vant@2
# Vue 3 项目,安装 Vant 3 # Vue 3 项目,安装 Vant 3
npm i vant@3 npm i vant@3
```
当然,你也可以通过 `yarn``pnpm` 进行安装:
```bash
# 通过 yarn 安装 # 通过 yarn 安装
yarn add vant@3 yarn add vant@3

View File

@ -4,13 +4,19 @@
### npm ### npm
Using `npm` to install:
```bash ```bash
# install Vant 2 for Vue 2 project # install Vant 2 for Vue 2 project
npm i vant@2 npm i vant@2
# install Vant 3 for Vue 3 project # install Vant 3 for Vue 3 project
npm i vant@3 npm i vant@3
```
Using `yarn` or `pnpm`:
```bash
# with yarn # with yarn
yarn add vant@3 yarn add vant@3

View File

@ -8,7 +8,7 @@
### 通过 npm 安装 ### 通过 npm 安装
在现有项目中使用 Vant 时,可以通过 `npm``yarn``pnpm` 进行安装: 在现有项目中使用 Vant 时,可以通过 `npm` 进行安装:
```bash ```bash
# Vue 2 项目,安装 Vant 2 # Vue 2 项目,安装 Vant 2
@ -16,7 +16,11 @@ npm i vant@2
# Vue 3 项目,安装 Vant 3 # Vue 3 项目,安装 Vant 3
npm i vant@3 npm i vant@3
```
当然,你也可以通过 `yarn``pnpm` 进行安装:
```bash
# 通过 yarn 安装 # 通过 yarn 安装
yarn add vant@3 yarn add vant@3

View File

@ -17,10 +17,12 @@ export const routeProps = {
export type RouteProps = ExtractPropTypes<typeof routeProps>; export type RouteProps = ExtractPropTypes<typeof routeProps>;
export function route(vm: ComponentPublicInstance<RouteProps>) { export function route({
const router = vm.$router; to,
const { to, url, replace } = vm; url,
replace,
$router: router,
}: ComponentPublicInstance<RouteProps>) {
if (to && router) { if (to && router) {
router[replace ? 'replace' : 'push'](to); router[replace ? 'replace' : 'push'](to);
} else if (url) { } else if (url) {

View File

@ -14,17 +14,13 @@ export type DropdownItemExpose = {
immediate?: boolean; immediate?: boolean;
} }
) => void; ) => void;
/** /** @private */
* @private
*/
state: { state: {
showPopup: boolean; showPopup: boolean;
transition: boolean; transition: boolean;
showWrapper: boolean; showWrapper: boolean;
}; };
/** /** @private */
* @private
*/
renderTitle: () => string | VNode[]; renderTitle: () => string | VNode[];
}; };

View File

@ -63,15 +63,10 @@ export default defineComponent({
const { $Lazyload } = getCurrentInstance()!.proxy!; const { $Lazyload } = getCurrentInstance()!.proxy!;
const style = computed(() => { const style = computed(() => {
const style: CSSProperties = {}; const style: CSSProperties = {
width: addUnit(props.width),
if (isDef(props.width)) { height: addUnit(props.height),
style.width = addUnit(props.width); };
}
if (isDef(props.height)) {
style.height = addUnit(props.height);
}
if (isDef(props.radius)) { if (isDef(props.radius)) {
style.overflow = 'hidden'; style.overflow = 'hidden';

View File

@ -1,13 +1,13 @@
import { CSSProperties } from 'vue'; import { CSSProperties } from 'vue';
import { useWindowSize } from '@vant/use';
import { inBrowser } from './basic'; import { inBrowser } from './basic';
import { isDef, isNumeric } from './validate'; import { isDef, isNumeric } from './validate';
export function addUnit(value?: string | number): string | undefined { export function addUnit(value?: string | number): string | undefined {
if (!isDef(value)) { if (isDef(value)) {
return undefined; return isNumeric(value) ? `${value}px` : String(value);
} }
return undefined;
return isNumeric(value) ? `${value}px` : String(value);
} }
export function getSizeStyle( export function getSizeStyle(
@ -51,13 +51,15 @@ function convertRem(value: string) {
} }
function convertVw(value: string) { function convertVw(value: string) {
const { width } = useWindowSize();
value = value.replace(/vw/g, ''); value = value.replace(/vw/g, '');
return (+value * window.innerWidth) / 100; return (+value * width.value) / 100;
} }
function convertVh(value: string) { function convertVh(value: string) {
const { height } = useWindowSize();
value = value.replace(/vh/g, ''); value = value.replace(/vh/g, '');
return (+value * window.innerHeight) / 100; return (+value * height.value) / 100;
} }
export function unitToPx(value: string | number): number { export function unitToPx(value: string | number): number {