/*! For license information please see 1994.0e5405e4.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["1994"],{17170:function(s,a,n){"use strict";n.r(a);var t=n("80681");let p=["innerHTML"];a.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Advanced Usage

\n

Intro

\n

Through this chapter, you can learn about some advanced usages of Vant.

\n

Component Usage

\n

Component Registration

\n

Vant supports multiple ways to register components:

\n

Global Registration

\n
import { Button } from 'vant';\nimport { createApp } from 'vue';\n\nconst app = createApp();\n\n// Method 1. via app.use\napp.use(Button);\n\n// Method 2. Register via app.component\napp.component(Button.name, Button);\n
\n

Full Registration

\n

You can also globally register all Vant components at once:

\n
import Vant from 'vant';\nimport { createApp } from 'vue';\n\nconst app = createApp();\n\napp.use(Vant);\n\n// The Lazyload directive needs to be registered separately\napp.use(vant.Lazyload);\n
\n
\n

Note: Registering all components will introduce the code of all components, leading to larger bundle size.

\n
\n

Local Registration

\n
import { Button } from 'vant';\n\nexport default {\n  components: {\n    [Button.name]: Button,\n  },\n};\n
\n
\n

For more information, please refer to Vue.js - Component Registration\u3002

\n
\n

<script setup>

\n

Vant components can be used directly in <script setup> without component registration.

\n
<script setup>\n  import { Button } from 'vant';\n</script>\n\n<template>\n  <Button />\n</template>\n
\n

JSX/TSX

\n

Vant components can be used directly in JSX and TSX without component registration.

\n
import { Button } from 'vant';\n\nexport default {\n  render() {\n    return <Button />;\n  },\n};\n
\n

Browser adaptation

\n

Viewport Units

\n

Vant uses px unit by default\uFF0Cyou can use tools such as postcss--px-to-viewport to transform px unit to viewport units (vw, vh, vmin, vmax).

\n

PostCSS Config

\n

PostCSS config example:

\n
// postcss.config.js\nmodule.exports = {\n  plugins: {\n    'postcss-px-to-viewport': {\n      viewportWidth: 375,\n    },\n  },\n};\n
\n

Rem Unit

\n

You can use tools such as postcss-pxtorem to transform px unit to rem unit.

\n\n

PostCSS Config

\n

PostCSS config example:

\n
// postcss.config.js\nmodule.exports = {\n  plugins: {\n    'postcss-pxtorem': {\n      rootValue: 37.5,\n      propList: ['*'],\n    },\n  },\n};\n
\n

Custom rootValue

\n

If the size of the design draft is 750 or other sizes, you can adjust the rootValue to:

\n
// postcss.config.js\nmodule.exports = {\n  plugins: {\n    // postcss-pxtorem version >= 5.0.0\n    'postcss-pxtorem': {\n      rootValue({ file }) {\n        return file.indexOf('vant') !== -1 ? 37.5 : 75;\n      },\n      propList: ['*'],\n    },\n  },\n};\n
\n

Adapt to PC Browsers

\n

Vant is a mobile-first component library, if you want to use Vant in PC browsers, you can use the @vant/touch-emulator module. This module will automatically convert the mouse events of the PC browser into the touch events of the mobile browser.

\n
# Install\nnpm i @vant/touch-emulator -S\n
\n
// Just import this module, then Vant works in PC browser\nimport '@vant/touch-emulator';\n
\n
'},null,8,p))}}}]);