wx-vue
v2.0.1
Published
Mobile UI Components based on Vue.js and WeUI
Downloads
3
Maintainers
Readme
Introduction
wx-vue is a mobile UI library based on Vue.js and WeUI. Features:
- Base on WeUI design
- 40+ Reusable components
- Easy to use and remain flexible and standardized
- Extensive documentation and demos
- Support on-demand loading
- Support TypeScript
- Support custom themes
- Provide a complete mobile ui development framework
Browser Support
Android 4.0+, iOS 8.0+
Preview
Documentation
Get started with the documentation
Installation
npm install wx-vue -S
Quick Start
import Vue from 'vue'
import App from './App.vue'
import 'wx-vue/lib/styles/index.css'
import Wx from 'wx-vue'
Vue.use(Wx)
new Vue({
el: '#app',
render: h => h(App)
})
See more in Guide.