Mobile UI elements for Vue.js

Quick Start

// install # for Vue 1.x npm install mint-ui@1 -S # for Vue 2.0 npm install mint-ui -S
// import all components import Vue from 'vue'; import Mint from 'mint-ui'; Vue.use(Mint); // import only on demand import { Cell, Checklist } from 'mint-ui'; Vue.component(Cell.name, Cell); Vue.component(Checklist.name, Checklist);

Features

  • Mint UI provides abundant CSS and JS components for building mobile applications. With it, you can create web pages in cohesive style ever faster.
  • Load on demand. Importing components and their style sheets only when needed truly liberates you from excessive file sizes.
  • To avoid unnecessary repaint and reflows, Mint UI handles animations using CSS3, so that users can enjoy smooth motions even on mobile devices.
  • Thanks to the efficient component-based approach of Vue.js, Mint UI is pretty light-weight. When all imported, the compressed code takes only ~30kb (JS + CSS) gzip space.