Coder Social home page Coder Social logo

lin-view-ui's Introduction

lin-view-ui

Coverage Status

在线文档

http://ui.linjiafu.top

简介

lin-view-ui 是一款基于 Vue.js 2.0 的前端 UI 组件库,主要集成了我平时在开发中使用到的 UI 组件

特性

  • 基于 Vue 开发的 UI 组件
  • 支持 typescript
  • 使用 lerna + rollup 的工作流,支持 ES2015
  • 提供友好的 API,可灵活的使用组件
  • 支持单个组件安装使用,无需全量安装
  • 全量安装支持按需引入,减少项目打包体积
  • JS 代码默认支持基于 ES modules 的 tree shaking
  • 偏向于业务组件
  • 提供完善的文档
  • 单元测试全面

全量安装使用

npm install lin-view-ui -S
import Vue from 'vue';
import LinUI from 'lin-view-ui';
import 'lin-view-ui/lib/theme-chalk/index.css'

Vue.use(LinUI); 

// or
import {
  Input,
  Button
  // ...
} from 'lin-view-ui';
import 'lin-view-ui/lib/theme-chalk/index.css'

Vue.use(Input);
Vue.use(Button);

单组件安装使用

npm install @lin-view-ui/button -S
import Vue from 'vue';
import Button from '@lin-view-ui/button';
import '@lin-view-ui/button/dist/style.css'

Vue.use(Button);

浏览器支持

  • 现代浏览器和 IE10 及以上
  • Electron

贡献

如果你在使用 lin-view-ui 时遇到问题,或者有好的建议,欢迎给我提 Issue

LICENSE

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.