xiaolongyuan / vant

A Vue.js 2.0 Mobile UI From YouZan

Home Page:https://www.youzanyun.com/zanui/vue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

有赞logo

项目logo

A Vue.js 2.0 Mobile UI at YouZan

Build Status Coverage Status npm version downloads

访问中文版

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:

zanui_vue_mobile_qrcode

LICENSE

MIT

About

A Vue.js 2.0 Mobile UI From YouZan

https://www.youzanyun.com/zanui/vue

License:Other


Languages

Language:JavaScript 51.3%Language:Vue 32.3%Language:CSS 15.4%Language:Shell 0.9%