Name Last Update
assets Loading commit data...
build Loading commit data...
dist/styles Loading commit data...
src Loading commit data...
test Loading commit data...
.editorconfig Loading commit data...
.gitignore Loading commit data...
.npmignore Loading commit data...
.travis.yml Loading commit data...
LICENSE Loading commit data...
README.md Loading commit data...
package.json Loading commit data...

README.md

iView iView NPM downloads Join the chat at https://gitter.im/iview/iview

A high quality UI Components Library with Vue.js

Docs

中文文档

Overview

组件概览(Component Overview)

Features

  • Using .vue file development mode
  • Based on npm + webpack + babel, support ES2015
  • High quality and rich functions
  • Friendly APIs,free and flexible

Programming

iView

Install

Install vue-webpack project in the first place

Use vue-vueRouter-webpack(Recommended) Or vue-cli

Install iView

npm install iview --save

Babel support for iView in webpack

module: {
    loaders: [
        { test: /iview\/.*?js$/, loader: 'babel' },// for Mac
        { test: /iview\\.*?js$/, loader: 'babel' },// for Windows
        { test: /\.js$/, loader: 'babel', exclude: /node_modules/ }
    ]
}

Usage

Use component as required

<template>
    <Page :current="1" :total="100"></Page>
</template>
<script>
    import { Page } from 'iview';
    export default {
        components: { Page }
    }
</script>

Use css

import 'iview/dist/styles/iview.css';

Browser Support

Normal browsers and Internet Explorer 9+.

We have been in developing, please pay attention to the iView.