mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* add contribute doc * fix url path * 文档格式调整 * readme 标题修改 * contribute guide for english * contribute for english * add pr & issue guildlines * change title && add pr & issue in zh_CN.md * add desc in zh_CN * add zh-CN markdown
A Vue.js 2.0 Mobile UI at YouZan
Install
npm i -S vant
Usage
Use babel-plugin-import (Recommended)
// .babelrc or babel-loader option
{
"plugins": [
["import", { "libraryName": "vant", "style": true }]
]
}
Then you can import components from vant, equivalent to import manually below.
// import js and css modularly, parsed by babel-plugin-import
import { Button } from 'vant';
Manually import
import { Button } from 'vant';
import 'vant/lib/vant-css/button.css';
Import all components
import Vue from 'vue';
import vant from 'vant';
import 'vant/lib/vant-css/index.css';
Vue.use(vant);
How to contribute
Please make sure to read the Contributing Guide before making a pull request.
Preview
You can scan the following QR code to access the demo:
LICENSE
Languages
TypeScript
63.5%
Vue
16.7%
Less
11.7%
JavaScript
7.7%
HTML
0.2%
Other
0.1%