Contents
Description:
Vant is a lightweight and simple to to use Mobile UI Components for Vue.js, which comes with various features such as:
Features:
With over 65+ reusable components1kb Component average size (min+gzip)90%+ Unit test coverageExtensive documentation and demos availableIt support Vue 2 & Vue 3It support Tree ShakingIt support Custom ThemeIt support i18nIt support TSIt support SSR
How to install and use it?
1. Install the Vant component with NPM.
npm i [email protected] -S
2. Import the Vant UI components.
import { createApp } from ‘vue’;
import { Button } from ‘vant’;
import ‘vant/lib/index.css’;
3. Register the component.
const app = createApp();
app.use(Button);
Change log:
v2.12.27:
Sku: added custom-upload propFixed: Field: field-error-message-font-size var nameFixed: Popup: fix memory leak issue
v2.12.26:
Uploader: added click-upload eventUploader: added read only propFixed: Field: text-area scroll to top after resizingFixed: Rate: should enable flex wrapFixed: Tabs: remove invalid head padding for card type
The post Mobile UI components for Vue.js – vant appeared first on Lipku.com.