Mint Ui

Mobile UI elements for Vue.js
Alternatives To Mint Ui
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Element53,40314,1079,3459 days ago161September 13, 20222,536mitVue
A Vue.js 2.0 UI Toolkit for Web
Vuetify37,2936,5411,76416 hours ago482September 15, 20221,110mitTypeScript
🐉 Vue Component Framework
Iview24,0072,6919286 months ago196July 17, 20201,221otherVue
A high quality UI Toolkit built on Vue.js 2.0
Quasar23,62932029417 hours ago326September 22, 2022490mitJavaScript
Quasar Framework - Build high-performance VueJS user interfaces in record time
Element Plus20,11290117 hours ago174September 16, 20221,382mitVue
🎉 A Vue.js 3 UI Library made by Element team
Ant Design Vue18,2084081,7363 days ago186September 02, 2022174otherVue
🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
Vux17,6221,2501875 days ago244September 17, 2021400mitVue
Mobile UI Components based on Vue & WeUI
Mint Ui16,4863,022302a year ago65December 11, 2017298mitVue
Mobile UI elements for Vue.js
Vue Awesome Swiper12,5592,2434496 months ago58March 19, 2022309mitJavaScript
🏆 Swiper component for @vuejs
Vuestic Admin9,386
a day ago15November 16, 202085mitVue
Free and Beautiful Vue 3 Admin Template
Alternatives To Mint Ui
Select To Compare


Alternative Project Comparisons
Readme

Mint UI

Build Status npm NPM downloads JS gzip size CSS gzip size Join the chat at https://gitter.im/ElemeFE/mint-ui

Mobile UI elements for Vue 2.0

Installation

npm i mint-ui -S

# for Vue 1.x
npm i [email protected] -S

Usage

Import all components.

import Vue from 'vue';
import Mint from 'mint-ui';
import 'mint-ui/lib/style.css';

Vue.use(Mint);

Or import specified component. (Use babel-plugin-component)

import { Cell, Checklist } from 'mint-ui';

Vue.component(Cell.name, Cell);
Vue.component(Checklist.name, Checklist);

Equals to

import Vue from 'vue';
import Mint from 'mint-ui';
import 'mint-ui/lib/style.css';

Vue.use(Mint);

// import specified component

import MtRadio from 'mint-ui/lib/radio';
import 'mint-ui/lib/radio/style.css';

Vue.component(MtRadio.name, MtRadio);

babel-plugin-component

  • Auto import css file
  • Modular import component

Installation

npm i babel-plugin-component -D

Usage

.babelrc

{
  "plugins": ["other-plugin", ["component", [
    { "libraryName": "mint-ui", "style": true }
  ]]]
}

CDN

RawGit

NPMCDN

Development

npm run dev

Contribution

Please make sure to read the Contributing Guide before making a pull request.

License

MIT

Popular Vue Projects
Popular Vue Component Projects
Popular Web User Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Vue
Vuejs
Vue Components
Mint Ui