/*! 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:'
Through this chapter, you can learn about some advanced usages of Vant.
\nVant supports multiple ways to register components:
\nimport { 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
\nYou can also globally register all Vant components at once:
\nimport 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\nNote: Registering all components will introduce the code of all components, leading to larger bundle size.
\n
import { Button } from 'vant';\n\nexport default {\n components: {\n [Button.name]: Button,\n },\n};\n
\n\n\nFor more information, please refer to Vue.js - Component Registration\u3002
\n
Vant components can be used directly in <script setup>
without component registration.
<script setup>\n import { Button } from 'vant';\n</script>\n\n<template>\n <Button />\n</template>\n
\nVant components can be used directly in JSX and TSX without component registration.
\nimport { Button } from 'vant';\n\nexport default {\n render() {\n return <Button />;\n },\n};\n
\nVant 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).
PostCSS config example:
\n// postcss.config.js\nmodule.exports = {\n plugins: {\n 'postcss-px-to-viewport': {\n viewportWidth: 375,\n },\n },\n};\n
\nYou can use tools such as postcss-pxtorem
to transform px
unit to rem
unit.
PostCSS config example:
\n// postcss.config.js\nmodule.exports = {\n plugins: {\n 'postcss-pxtorem': {\n rootValue: 37.5,\n propList: ['*'],\n },\n },\n};\n
\nIf the size of the design draft is 750 or other sizes, you can adjust the rootValue
to:
// 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
\nVant 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