1.2.4 • Published 7 years ago

wmvui v1.2.4

Weekly downloads
-
License
-
Repository
-
Last release
7 years ago

基于大牛的Muse UI 在次开发,功能正在完善中(本人是个菜逼不喜绕道),感谢开源

npm package NPM downloads Join the chat at https://gitter.im/muse-ui/muse-ui

Material Design UI library for Vuejs 2.0

Links

Install

npm install wmvui -save

Get Started

import Vue from 'vue'
import WMVUI from 'wmvui'
import 'wmvui/dist/wmvui.css'
Vue.use(WMVUI)

or

webpack.conf.js webpack1

{
  // ...
  module: {
    loaders: [
      // ...
      {
        test: /wmvui.src.*?js$/,
        loader: 'babel'
      }
    ]
  },
  resolve: {
    // ...
    alias: {
      'muse-components': 'wmvui/src'
    }
  }
}

webpack2

{
  // ...
  rules: {
    loaders: [
      // ...
      {
        test: /wmvui.src.*?js$/,
        loader: 'babel-loader'
      }
    ]
  },
  resolve: {
    // ...
    alias: {
      'wmvui': 'wmvui/src'
    }
  }
}

main.js

import Vue from 'vue'
import 'wmvui/styles/base.less' // 加载基础的样式
import appBar from 'wmvui/appBar'
import avatar from 'wmvui/avatar'
// ..
Vue.component(appBar.name, appBar)
Vue.component(avatar.name, avatar)

Browser Support

  • IE 10+
  • Andorid 4.4+
  • IOS 7+

Changelog

Detailed changes for each release are documented in the release notes.

Contribution

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

Dependencies

Licence

wmvui is open source and released under the MIT Licence.

Copyright (c) 2016 myron

1.2.4

7 years ago

1.2.3

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.9

7 years ago

1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

2.0.3

7 years ago