logo

Vant4-Kit

一款基于Vant 4.x 的增强库,旨在加速开发,早点下班

--- ## Getting Started 文档地址:[vant4-kit](https://vant4-kit.netlify.app/) ## Installation ```bash # npm npm install vant4-kit --save # yarn yarn add vant4-kit # pnpm pnpm add vant4-kit ``` ## Usage ```ts import { createApp } from 'vue'; import Vant from 'vant'; // 1. Import the Vant import Vant4Kit from 'vant4-kit'; // 2. Import the vant4-kit import 'vant4-kit/dist/index.css'; const app = createApp(); // 3. Register the components app.use(Vant); app.use(Vant4Kit); ``` ```html ```