All Projects → c10342 → lin-view-ui

c10342 / lin-view-ui

Licence: MIT license
基于vue2.0的pc端组件

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
CSS
56736 projects

Projects that are alternatives of or similar to lin-view-ui

bluebubbles-app
A cross-platform app ecosystem, bringing iMessage to Android, PC (Windows, Linux, & even macOS), and Web!
Stars: ✭ 338 (+363.01%)
Mutual labels:  pc
QuickTraceiOSLogger
A real time iOS log trace tool, view iOS log with pc web browser under local area network, which will automatically scroll like xcode. 一个实时的iOS日志跟踪工具,在局域网中使用 PC Web 浏览器查看 iOS 日志,它将像xcode一样自动滚动。
Stars: ✭ 16 (-78.08%)
Mutual labels:  pc
f1-telemetry-client
A Node UDP client and telemetry parser for Codemaster's Formula 1 series of games
Stars: ✭ 128 (+75.34%)
Mutual labels:  pc
Revokemsgpatcher
A hex editor for WeChat/QQ/TIM - PC版微信/QQ/TIM防撤回补丁(我已经看到了,撤回也没用了)
Stars: ✭ 12,482 (+16998.63%)
Mutual labels:  pc
DMSkin-Soft-Hide
隐藏软件&游戏的界面&任务栏图标&支持热键
Stars: ✭ 21 (-71.23%)
Mutual labels:  pc
pc guidelines
Guidelines for using IvLabs PC. General instructions for maintaining and using any PC/laptop while using Ubuntu for Robotics/DL/RL research.
Stars: ✭ 23 (-68.49%)
Mutual labels:  pc
AUTOBOT FIFAX
FIFA SNIPING BOT
Stars: ✭ 31 (-57.53%)
Mutual labels:  pc
probabilistic-circuits
A curated collection of papers on probabilistic circuits, computational graphs encoding tractable probability distributions.
Stars: ✭ 33 (-54.79%)
Mutual labels:  pc
HALO-SCRIPT-PROJECTS
✅ Halo PC|CE - Add-ons for Phasor V2+ and SAPP 🇳🇿
Stars: ✭ 25 (-65.75%)
Mutual labels:  pc
tua-body-scroll-lock
🔐 Body scroll locking that just works with everything
Stars: ✭ 304 (+316.44%)
Mutual labels:  pc
pspdecrypt
Simple tool to decrypt PSP binaries
Stars: ✭ 78 (+6.85%)
Mutual labels:  pc
tdesign-vue-next
A Vue3.x UI components lib for TDesign.
Stars: ✭ 799 (+994.52%)
Mutual labels:  pc
react-device-frameset
React device frameset component
Stars: ✭ 30 (-58.9%)
Mutual labels:  pc
xbox360-controller-manager
Turn OFF your wireless xbox 360 controller on PC and see the battery status of the connected controllers.
Stars: ✭ 38 (-47.95%)
Mutual labels:  pc
blockbunny
Libgdx-based game for Android, iOS, and PC following the tutorial by ForeignGuyMike on youtube channel. Read more on README.md
Stars: ✭ 25 (-65.75%)
Mutual labels:  pc
omo
Kotlin port with changes and improvements for omo originally by ForeignGuyMike
Stars: ✭ 22 (-69.86%)
Mutual labels:  pc

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].