1.0.2 • Published 2 years ago

mtt-ui v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Intro

mtt-ui is a Material design mobile component library developed based on Vue2

Features

  • 🚀 Components are very lightweight
  • 💪 Developed by Chinese, complete Chinese and English documentation and logistics support
  • 🌍 Support internationalization
  • 💡 Support the Typescript
  • 💪 Make sure more than 90 percent unit test coverage, providing stability assurance

Webpack / Vite

# Install with npm or yarn or pnpm

# npm
npm i mtt-ui -S

# yarn
yarn add mtt-ui

# pnpm
pnpm add mtt-ui
import App from './App.vue'
import MttUi from 'mtt-ui'
import Vue from 'vue'
import 'mtt-ui/ui/es/style.js'

Vue.use(MttUi)

new Vue({
  render: h => h(App)
}).$mount('#app')