《转》vue 常用ui组件

摘要:
/zh-cniviewiView配套的工作流:https://github.com/icarusion/vue-vueRouter-webpackgithub地址:https://github.com/iview/iview官网:https://www.iviewui.com/vue-mui官网:http://mui.yaobieting.com/github地址:https://github.com/creatshare/vue-muiradon-ui中文文档:https://luojilab.github.io/radon-ui/#!

vux github ui demo:https://github.com/airyland/vux

Mint UI

项目主页:http://mint-ui.github.io/#!/zh-cn
demo:http://elemefe.github.io/mint-ui/#/
github地址:https://github.com/ElemeFE/mint-ui
中文文档地址:http://mint-ui.github.io/docs/#!/zh-cn

iview

iView 配套的工作流:https://github.com/icarusion/vue-vueRouter-webpack
github地址:https://github.com/iview/iview
官网:https://www.iviewui.com/

vue-mui

官网:http://mui.yaobieting.com/
github地址:https://github.com/creatshare/vue-mui

radon-ui

中文文档:https://luojilab.github.io/radon-ui/#!/
github:https://github.com/luojilab/radon-ui

antd vue

中文文档:http://okoala.github.io/vue-antd/#!/components
github:https://github.com/okoala/vue-antd

weex

社区:http://www.weex.help/
官网:http://weex-project.io/cn/
github:https://github.com/alibaba/weex
中文文档:http://www.weex.help/topic/57792770eb60516a48db5485

element(饿了么后台)

Element 是由饿了么UED设计、饿了么大前端开发的一套基于 Vue 2.0 的桌面端组件库。

官网:http://element.eleme.io/#/zh-CN
饿了么github:http://github.com/elemefe

N3

官网:https://n3-components.github.io/N3-components/
中文文档:https://n3-components.github.io/N3-components/component.html
英文文档:https://github.com/N3-components/N3-components

vuikit

github:https://github.com/vuikit/vuikit
英文文档:https://vuikit.js.org/#/

免责声明:文章转载自《《转》vue 常用ui组件》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇页面实现自动刷新的3种方式linux安装配置jdk、tomcat、开机自启动下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

UI组件库Kendo UI for jQuery R3 2021

9月我们正式迎来了Kendo UI for jQueryR3 2021新版!在我们的新版中,添加了高度需求的组件,如 OrgChart、Heatmap、Popover 和 Captcha,以及现有组件中的各种功能,同时还发布了全新的UI Kit for Figma组件!接下来,跟我们一起了解一下这些功能吧! Kendo UI for jQuery R3 2...

influxdb安装及配置

influxdb安装及配置 安装 二进制安装 这里以centos6.5为例进行安装: wget https://dl.influxdata.com/influxdb/releases/influxdb-1.1.0.x86_64.rpm yum localinstall influxdb-1.1.0.x86_64.rpm 其它环境可以参考influxdb官方...

死锁问题------------------------INSERT ... ON DUPLICATE KEY UPDATE*(转)

前言    我们在实际业务场景中,经常会有一个这样的需求,插入某条记录,如果已经存在了则更新它如果更新日期或者某些列上的累加操作等,我们肯定会想到使用INSERT ... ON DUPLICATE KEY UPDATE语句,一条语句就搞定了查询是否存在和插入或者更新这几个步骤,但是使用这条语句在msyql的innodb5.0以上版本有很多的陷阱,即有可能导...

关于Vue的各个UI框架(elementUI、mint-ui、VUX)

elementUI 官网:http://element.eleme.io/ 使用步骤: 1、安装完vue-cli后,再安装 element-ui 命令行:npm i element-ui -D 相当于  npm install element-ui --save-dev //   i -> install       D  -> --save-...

JetBrainstorm激活方式(持续更新)

 JetBrainstorm家族 2019年版本 亲测:2019.3.2 | 2019.1.3 1. 先下载压缩包解压后得到jetbrains-agent.jar,把它放到你认为合适的文件夹内。 下载页面:https://zhile.io/2018/08/17/jetbrains-license-server-crack.html 2. 启动你的IDE,如...

vue--渲染后修改数据不刷新

问题: 在使用 vue 进行开发的过程中,可能会遇到一种情况:当生成vue实例后,再次给数据赋值时,有时候并不会自动更新到视图上去。也就是如果在实例创建之后添加新的属性到实例上,它不会触发视图更新。 vue遍历数组对象进行渲染 <div class="hisItem" v-for="(item,index) in historyNo...