/*! For license information please see 262.bd39c4e7.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["262"],{51362:function(e,n,t){"use strict";t.r(n);var i=t("80681");let o=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,i.wg)(),(0,i.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Thank you for using Vant.
\nBelow are the guidelines for submitting feedback or code to Vant. Please take a few minutes to read the following before submitting an issue or PR to Vant.
\nBefore developing locally, please make sure that Node.js >= 18 is installed in your development environment.
\nFollow the steps below to develop Vant components locally.
\n# Clone repository\ngit clone git@github.com:vant-ui/vant.git\n\n# Enable pnpm package manager\ncorepack enable\n\n# Install dependencies\npnpm i\n\n# Start development\npnpm dev\n
\nDifferent branches of the repository correspond to different Vant versions, please switch to the appropriate branch for development:
\nIf GitHub cloning is slow, you can also directly clone Vant\'s mirror repository directly on gitee:
\ngit clone git@gitee.com:vant-contrib/vant.git\n
\nThe mirror repository is only used to speed up local access, please do not submit issues and pull requests to the mirror repository.
\nVant uses monorepo for code management, and all subpackages are in the packages/vant
directory:
root\n\u2514\u2500 packages\n \u251C\u2500 vant # Component library\n \u251C\u2500 vant-cli # Scaffolding\n \u251C\u2500 vant-icons # Icon library\n \u251C\u2500 vant-use # Composition API\n \u2514\u2500 .... # Other npm packages\n
\nAmong them, the packages/vant
directory is the core code of the component library:
vant\n\u251C\u2500 docs # Documentation\n\u251C\u2500 src # Component source code\n\u251C\u2500 test # Test utils\n\u2514\u2500 vant.config.mjs # Document configuration\n
\nThe packages/vant/src
directory contains the source code of each component, and each folder corresponds to a component:
src\n\u2514\u2500 button\n \u251C\u2500 demo # Demo code\n \u251C\u2500 test # Unit test\n \u251C\u2500 Component.tsx # Component\n \u251C\u2500 index.ts # Component entry\n \u251C\u2500 index.less # Styles\n \u251C\u2500 README.md # English document\n \u2514\u2500 README.zh-CN.md # Chinese document\n
\nWhen writing code, please note:
\nasync
, await
.If this is your first time submitting a pull request on GitHub, you can learn from the following article:
\n\nWhen submitting a Pull Request, please note:
\nfeature/button_color
.The title of the Pull Request should be in the following format:
\ntype(ComponentName?)\uFF1Acommit message\n
\nExample\uFF1A
\nAllowed Types:
\nBefore submitting a Pull Request, please synchronize the latest code of the main repository according to the following process:
\n# Add the main repository to remote\ngit remote add upstream git@github.com:vant-ui/vant.git\n\n# Pull the latest code from the main repository\ngit fetch upstream\n\n# Switch to the main branch\ngit checkout main\n\n# Merge the code from the main repository\ngit merge upstream/main\n
\n