├── README.md
├── shell
├── git
│ ├── img
│ │ └── branch.png
│ ├── git_branch.md
│ └── git_bash.md
└── shadowsocks
│ └── shadowsocks.md
├── markdown
└── index.md
├── font-end
├── box
│ └── bfc.html
└── layout
│ └── demo1.html
├── error
└── mql_1524.md
└── vue
└── README.md
/README.md:
--------------------------------------------------------------------------------
1 | # blog_content
2 | 记录一些发现的问题
3 |
--------------------------------------------------------------------------------
/shell/git/img/branch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/calamus0427/blog_content/master/shell/git/img/branch.png
--------------------------------------------------------------------------------
/markdown/index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/font-end/box/bfc.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | BFC的理解
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/shell/git/git_branch.md:
--------------------------------------------------------------------------------
1 | # 删除分支
2 | -->code
3 |
4 | -->branch
5 |
6 | 点击最后的删除按钮删除分支
7 | 
8 |
9 | # 修改默认分支
10 | 代码提交的contribution只记录提交到默认分支(master)和gh-pages分支的,所有如果需要记录必须修改默认分支
11 |
12 |
13 | -->code
14 |
15 | -->branch
16 |
17 | 点击最上面的change default branch
18 |
19 | 
20 |
--------------------------------------------------------------------------------
/error/mql_1524.md:
--------------------------------------------------------------------------------
1 | # mysql 链接错误
2 | ## 错误提示:ERROR 1524 (HY000): Plugin 'where User='root'' is not loaded
3 | ## 解决方法:
4 |
5 | ```
6 | /etc/init.d/mysql stop
7 | mysqld_safe --skip-grant-tables &
8 | mysql -u root
9 |
10 | #这样就重新进入mql了
11 | #再重新配置
12 | use mysql;
13 | update user set password=PASSWORD("mynewpassword") where User='root';
14 | update user set plugin="mysql_native_password";
15 | #更新配置
16 | flush privileges;
17 | quit;
18 | /etc/init.d/mysql stop
19 | kill -9 $(pgrep mysql)
20 | /etc/init.d/mysql start
21 |
22 | #修复完成
23 |
24 | #登录数据库:
25 | mysql -u root -p
26 | password:mynewpassword
27 | ```
28 |
--------------------------------------------------------------------------------
/shell/shadowsocks/shadowsocks.md:
--------------------------------------------------------------------------------
1 | # debian9安装shadowsocks
2 |
3 | ```
4 | apt-get update
5 | apt-get install net-tools
6 | apt-get install shadowsocks
7 | cd /etc/shadowsocks
8 | vi server.json
9 | # backup the server.json. The file is for the shadowsocks server
10 | # change the password and port for you or add some with json format
11 | ssserver -d start -c server.json
12 | # or
13 | ssserver -d start -c /etc/shadowsocks/server.json
14 | # for stop
15 | ssserver -d stop
16 | # restart
17 | ssserver -d restart -c server.json
18 |
19 | ```
20 |
21 | ## server.json
22 |
23 | ```
24 | {
25 | "server": "::",
26 | "timeout": 300,
27 | "method": "aes-256-cfb", //默认,也可以根据自己需求改
28 | "port_password": {"your_port":"your_password"}}
29 |
30 | ```
31 |
--------------------------------------------------------------------------------
/shell/git/git_bash.md:
--------------------------------------------------------------------------------
1 | # git bash
2 |
3 | ### clone项目
4 |
5 | ```
6 | git clone git@github.com:calamus0427/my-blog.git
7 | ```
8 |
9 | ### 设置用户名和密码
10 |
11 | ```
12 | $ git config --global user.name "hanzichi" //给自己起个用户名
13 | $ git config --global user.email "abc@gmail.com" //填写自己的邮箱
14 | ```
15 |
16 | ### 提交代码
17 | ```
18 | git add . // 要add的文件,. 表示添加所有
19 | git commit -m 'add files' // 提交更新
20 | git push origin master // push到远端master上
21 | ```
22 |
23 | #### 查看远程分支:
24 | ```
25 | $ git branch --all
26 | //or
27 | $ git branch -r
28 | ```
29 |
30 | #### 删除远程分支
31 | ```
32 | git branch -r -d origin/branch-name
33 | //或者通过推送空分支的方式删除远程分支
34 | git push origin :branch-name
35 | ```
36 |
37 | #### 切换分支
38 | ```
39 | $ git checkout branchName
40 | ```
41 |
--------------------------------------------------------------------------------
/font-end/layout/demo1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | 页面布局浮动解决方案
9 |
27 |
28 |
29 |
30 |
31 |
32 |
49 |
50 |
51 |
52 |
53 |
浮动解决方案
54 |
增加高度
55 |
增加高度
56 |
增加高度
57 |
增加高度
58 |
增加高度
59 |
增加高度
60 |
增加高度
61 |
增加高度
62 |
增加高度
63 |
增加高度
64 |
增加高度
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
96 |
97 |
98 |
99 |
绝对定位解决方案
100 |
增加高度
101 |
增加高度
102 |
增加高度
103 |
增加高度
104 |
增加高度
105 |
增加高度
106 |
增加高度
107 |
增加高度
108 |
增加高度
109 |
增加高度
110 |
增加高度
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
142 |
143 |
144 |
145 |
flexbox解决方案
146 |
增加高度
147 |
增加高度
148 |
增加高度
149 |
增加高度
150 |
增加高度
151 |
增加高度
152 |
增加高度
153 |
增加高度
154 |
增加高度
155 |
增加高度
156 |
增加高度
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
189 |
190 |
191 |
192 |
表格布局解决方案
193 |
增加高度
194 |
增加高度
195 |
增加高度
196 |
增加高度
197 |
增加高度
198 |
增加高度
199 |
增加高度
200 |
增加高度
201 |
增加高度
202 |
增加高度
203 |
增加高度
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
231 |
232 |
233 |
234 |
网格布局解决方案
235 |
增加高度
236 |
增加高度
237 |
增加高度
238 |
增加高度
239 |
增加高度
240 |
增加高度
241 |
增加高度
242 |
增加高度
243 |
增加高度
244 |
增加高度
245 |
增加高度
246 |
247 |
248 |
249 |
250 |
251 |
252 |
--------------------------------------------------------------------------------
/vue/README.md:
--------------------------------------------------------------------------------
1 | awesome-github-vue 是由[OpenDigg](http://www.opendigg.com/)整理并维护的Vue相关开源项目库集合。
2 | start数目以项目数为准,这里不一定会经常更新
3 | 搬运一些我近期看到的~
4 |
5 | # 内容
6 |
7 | - [UI组件](#UI组件)
8 | - [开发框架](#开发框架)
9 | - [实用库](#实用库)
10 | - [服务端](#服务端)
11 | - [辅助工具](#辅助工具)
12 | - [应用实例](#应用实例)
13 | - [Demo示例](#Demo示例)
14 |
15 | ## UI组件
16 |
17 | - [element](https://github.com/ElemeFE/element) ★24418 - 饿了么出品的Vue2的web UI工具套件
18 | - [iview](https://github.com/iview/iview) ★13543 - 基于 Vuejs 的开源 UI 组件库,语法和ui都很简洁不输ele的好组件库
19 | - [Vux](https://github.com/airyland/vux) ★11640 - 基于Vue和WeUI的组件库
20 | - [mint-ui](https://github.com/ElemeFE/mint-ui) ★10111 - Vue 2的移动UI元素
21 | - [vuetify](https://github.com/vuetifyjs/vuetify) ★9291 - 为移动而生的Vue JS 2组件框架
22 | - [muse-ui](https://github.com/museui/muse-ui) ★5566 - 三端样式一致的响应式 UI 库
23 | - [vue-material](https://github.com/marcosmoura/vue-material) ★5655 - 通过Vue Material和Vue 2建立精美的app应用
24 | - [Keen-UI](https://github.com/JosephusPaye/Keen-UI) ★3290 - 轻量级的基本UI组件合集
25 | - [vonic](https://github.com/wangdahoo/vonic) ★2575 - 快速构建移动端单页应用
26 | - [vue-multiselect](https://github.com/monterail/vue-multiselect) ★1539 - Vue.js选择框解决方案
27 | - [eme](https://github.com/egoist/eme) ★1529 - 优雅的Markdown编辑器
28 | - [vueAdmin](https://github.com/taylorchen709/vueAdmin) ★1455 - 基于vuejs2和element的简单的管理员模板
29 | - [bootstrap-vue](https://github.com/pi0/bootstrap-vue) ★1267 - 应用于Vuejs2的Twitter的Bootstrap 4组件
30 | - [Vue.Draggable](https://github.com/David-Desmaisons/Vue.Draggable) ★1191 - 实现拖放和视图模型数组同步
31 | - [eagle.js](https://github.com/Zulko/eagle.js) ★1128 - hacker的幻灯片演示框架
32 | - [vue-awesome-swiper](https://github.com/surmon-china/vue-awesome-swiper) ★1012 - vue.js触摸滑动组件
33 | - [vue-table](https://github.com/ratiw/vue-table) ★1009 - 简化数据表格
34 | - [vue-chat](https://github.com/Coffcer/vue-chat) ★859 - vuejs和vuex及webpack的聊天示例
35 | - [vue-blu](https://github.com/chenz24/vue-blu) ★850 - 帮助你轻松创建web应用
36 | - [vue-recyclerview](https://github.com/hilongjw/vue-recyclerview) ★849 - 管理大列表的vue-recyclerview
37 | - [VueCircleMenu](https://github.com/OYsun/VueCircleMenu) ★838 - 漂亮的vue圆环菜单
38 | - [vue-infinite-scroll](https://github.com/ElemeFE/vue-infinite-scroll) ★779 - VueJS的无限滚动指令
39 | - [buefy](https://github.com/rafaelpimpa/buefy) ★755 - 响应式UI组件轻量级库
40 | - [vue-beauty](https://github.com/FE-Driver/vue-beauty) ★749 - 由vue和ant design创建的优美UI组件
41 | - [vue-waterfall](https://github.com/MopTym/vue-waterfall) ★737 - Vue.js的瀑布布局组件
42 | - [radon-ui](https://github.com/luojilab/radon-ui) ★715 - 快速开发产品的Vue组件库
43 | - [vue-loop](https://github.com/lookstudios/vue-loop) ★701 - 无限的内容循环
44 | - [vue-chartjs](https://github.com/apertureless/vue-chartjs) ★694 - vue中的Chartjs的封装
45 | - [vue-carbon](https://github.com/myronliu347/vue-carbon) ★684 - 基于 vue 开发MD风格的移动端
46 | - [vue-syntax-highlight](https://github.com/vuejs/vue-syntax-highlight) ★655 - Sublime Text语法高亮
47 | - [vue-echarts](https://github.com/Justineo/vue-echarts) ★649 - VueJS的ECharts组件
48 | - [vue-quill-editor](https://github.com/surmon-china/vue-quill-editor) ★615 - 基于Quill适用于Vue2的富文本编辑器
49 | - [vue-amap](https://github.com/ElemeFE/vue-amap) ★571 - 基于Vue 2和高德地图的地图组件
50 | - [vue-calendar](https://github.com/jinzhe/vue-calendar) ★536 - 日期选择插件
51 | - [vue-infinite-loading](https://github.com/PeachScript/vue-infinite-loading) ★501 - VueJS的无限滚动插件
52 | - [vue-swipe](https://github.com/ElemeFE/vue-swipe) ★481 - VueJS触摸滑块
53 | - [vue-music-player](https://github.com/microzz/vue-music-player) ★451 - Vuejs写一个音乐播放器
54 | - [vue-scroller](https://github.com/wangdahoo/vue-scroller) ★444 - Vonic UI的功能性组件
55 | - [vue-datepicker](https://github.com/hilongjw/vue-datepicker) ★436 - 日历和日期选择组件
56 | - [vue-core-image-upload](https://github.com/Vanthink-UED/vue-core-image-upload) ★393 - 轻量级的vue上传插件
57 | - [vue-progressbar](https://github.com/hilongjw/vue-progressbar) ★379 - vue轻量级进度条
58 | - [Gokotta](https://github.com/Zhangdroid/Gokotta) ★375 - 简单的音乐播放器
59 | - [vue-sortable](https://github.com/sagalbot/vue-sortable) ★373 - 轻松添加拖拽排序
60 | - [vue-picture-input](https://github.com/alessiomaffeis/vue-picture-input) ★352 - 移动友好的图片文件输入组件
61 | - [vue-echarts-v3](https://github.com/xlsdg/vue-echarts-v3) ★351 - VueJS组件封装
62 | - [markcook](https://github.com/jrainlau/markcook) ★343 - 好看的markdown编辑器
63 | - [vue-video-player](https://github.com/surmon-china/vue-video-player) ★336 - VueJS视频及直播播放器
64 | - [vue-google-maps](https://github.com/GuillaumeLeclerc/vue-google-maps) ★334 - 带有双向数据绑定Google地图组件
65 | - [vue-trend](https://github.com/QingWei-Li/vue-trend) ★332 - 简单优雅的星光线条
66 | - [vuejs-datepicker](https://github.com/charliekassel/vuejs-datepicker) ★314 - vue日期选择器组件
67 | - [vue-fullcalendar](https://github.com/Wanderxx/vue-fullcalendar) ★313 - 基于vue.js的全日历组件
68 | - [vue-html5-editor](https://github.com/PeakTai/vue-html5-editor) ★303 - html5所见即所得编辑器
69 | - [vue-upload-component](https://github.com/lian-yue/vue-upload-component) ★298 - Vuejs文件上传组件
70 | - [DataVisualization](https://github.com/SimonZhangITer/DataVisualization) ★298 - 数据可视化
71 | - [vue-tables-2](https://github.com/matfish2/vue-tables-2) ★291 - 显示数据的bootstrap样式网格
72 | - [VueStar](https://github.com/OYsun/VueStar) ★270 - 带星星动画的vue点赞按钮
73 | - [vue-data-tables](https://github.com/njleonzhang/vue-data-tables) ★266 - VueJS2数据表格
74 | - [vue-paginate](https://github.com/TahaSh/vue-paginate) ★261 - 分页数据的简约VueJS插件
75 | - [vue-ydui](https://github.com/ydcss/vue-ydui) ★247 - 基于Vue2的移动端和微信UI
76 | - [vue-mugen-scroll](https://github.com/egoist/vue-mugen-scroll) ★239 - 无限滚动组件
77 | - [vue-virtual-scroller](https://github.com/Akryum/vue-virtual-scroller) ★238 - 带任意数目数据的顺畅的滚动
78 | - [vue2-calendar](https://github.com/icai/vue2-calendar) ★236 - 支持lunar和日期事件的日期选择器
79 | - [vue-dropzone](https://github.com/rowanwins/vue-dropzone) ★233 - 用于文件上传的Vue组件
80 | - [vue2-douban-market](https://github.com/Awheat/vue2-douban-market) ★233 - 仿豆瓣市集webapp项目
81 | - [vue-js-modal](https://github.com/euvl/vue-js-modal) ★228 - 移动友好的Vuejs2的modal
82 | - [vue-slider](https://github.com/warpcgd/vue-slider) ★224 - vue 滑动组件
83 | - [vue-datetime-picker](https://github.com/Haixing-Hu/vue-datetime-picker) ★224 - 日期时间选择控件
84 | - [rubik](https://github.com/ccforward/rubik) ★217 - 基于Vuejs2的开源 UI 组件库
85 | - [vue-datasource](https://github.com/coderdiaz/vue-datasource) ★210 - 创建VueJS动态表格
86 | - [vue-image-crop-upload](https://github.com/dai-siki/vue-image-crop-upload) ★205 - vue图片剪裁上传组件
87 | - [Vueditor](https://github.com/hifarer/Vueditor) ★204 - 所见即所得的编辑器
88 | - [mint-loadmore](https://github.com/mint-ui/mint-loadmore) ★203 - VueJS的双向下拉刷新组件
89 | - [vue-slider-component](https://github.com/NightCatSama/vue-slider-component) ★202 - 在vue1和vue2中使用滑块
90 | - [vue-chat](https://github.com/microzz/vue-chat) ★200 - Vue全家桶+Socket.io+Express/Koa2打造一个智能聊天室
91 | - [mavonEditor](https://github.com/hinesboy/mavonEditor) ★179 - 基于Vue的markdown编辑器
92 | - [vue-carousel-3d](https://github.com/Wlada/vue-carousel-3d) ★173 - VueJS的3D轮播组件
93 | - [vue-baidu-map](https://github.com/Dafrok/vue-baidu-map) ★170 - 基于 Vue 2的百度地图组件库
94 | - [sweet-modal-vue](https://github.com/adeptoas/sweet-modal-vue) ★170 - 精美的点击提示对话框
95 | - [vue-particles](https://github.com/creotip/vue-particles) ★168 - 粒子背景的vue组件
96 | - [vue-swiper](https://github.com/weilao/vue-swiper) ★167 - 易于使用的滑块组件
97 | - [vue-simplemde](https://github.com/F-loat/vue-simplemde) ★166 - VueJS的Markdown编辑器组件
98 | - [vue-slide](https://github.com/hilongjw/vue-slide) ★161 - vue轻量级滑动组件
99 | - [vue-dragula](https://github.com/Astray-git/vue-dragula) ★157 - 使拖放变得简单
100 | - [vue-drag-and-drop-list](https://github.com/Alex-fun/vue-drag-and-drop-list) ★156 - 创建排序列表的Vue指令
101 | - [vue2-editor](https://github.com/davidroyer/vue2-editor) ★155 - HTML编辑器
102 | - [vue-charts](https://github.com/hchstera/vue-charts) ★152 - 轻松渲染一个图表
103 | - [vue-data-grid](https://github.com/LucienLee/vue-data-grid) ★151 - VueJS复杂桌面交互示例
104 | - [vuwe](https://github.com/vuwe/vuwe) ★150 - 基于微信WeUI所开发的专用于Vue2的组件库
105 | - [vue-progressive-image](https://github.com/MatteoGabriele/vue-progressive-image) ★148 - Vue的渐进图像加载插件
106 | - [vue-msgbox](https://github.com/ElemeFE/vue-msgbox) ★148 - vuejs的消息框
107 | - [vue-lazyload-img](https://github.com/JALBAA/vue-lazyload-img) ★147 - 移动优化的vue图片懒加载插件
108 | - [vue-dragging](https://github.com/hilongjw/vue-dragging) ★146 - 使元素可以拖拽
109 | - [vue-instant](https://github.com/santiblanko/vue-instant) ★143 - 轻松创建自动提示的自定义搜索控件
110 | - [vue-social-sharing](https://github.com/nicolasbeauvais/vue-social-sharing) ★142 - 社交分享组件
111 | - [vue-images](https://github.com/littlewin-wang/vue-images) ★139 - 显示一组图片的lightbox组件
112 | - [vue-impression](https://github.com/NewDadaFE/vue-impression) ★134 - 移动Vuejs2 UI元素
113 | - [vue-mdEditor](https://github.com/ovenslove/vue-mdEditor) ★131 - 基于VUE的markdown文本编辑器
114 | - [vue-typer](https://github.com/cngu/vue-typer) ★130 - 模拟用户输入选择和删除文本的Vue组件
115 | - [vue-highcharts](https://github.com/weizhenye/vue-highcharts) ★130 - HighCharts组件
116 | - [vue-tooltip](https://github.com/Akryum/vue-tooltip) ★129 - 带绑定信息提示的提示工具
117 | - [vue-svgicon](https://github.com/MMF-FE/vue-svgicon) ★127 - 创建svg图标组件的工具
118 | - [wdui](https://github.com/wdfe/wdui) ★124 - 基于Vue2的UI组件库
119 | - [vue2-loading-bar](https://github.com/BosNaufal/vue2-loading-bar) ★118 - 最简单的仿Youtube加载条视图
120 | - [vue-tabs-component](https://github.com/spatie/vue-tabs-component) ★116 - 渲染tabs的Vue组件
121 | - [MagicMusic](https://github.com/hzzly/MagicMusic) ★113 - 不一样的音乐
122 | - [vue-region-picker](https://github.com/QingWei-Li/vue-region-picker) ★111 - 选择中国的省份市和地区
123 | - [vue-datatable](https://github.com/galenyuan/vue-datatable) ★102 - 使用Vuejs创建的DataTableView
124 | - [vue-loading](https://github.com/Coffcer/vue-loading) ★102 - 元素中加载block的Vue指令
125 | - [vodal](https://github.com/chenjiahan/vodal) ★99 - 动画的vue模态
126 | - [vue-img-inputer](https://github.com/waynecz/vue-img-inputer) ★97 - 基于Vue2的图片输入框
127 | - [vue-video](https://github.com/hilongjw/vue-video) ★96 - Vue.js的HTML5视频播放器
128 | - [vue-touch-ripple](https://github.com/surmon-china/vue-touch-ripple) ★95 - vuejs的触摸ripple组件
129 | - [vue-event-calendar](https://github.com/GeoffZhu/vue-event-calendar) ★91 - 简单小巧的事件日历组件
130 | - [v-bar](https://github.com/luiguild/v-bar) ★91 - 虚拟响应跨浏览器滚动条
131 | - [vue2-timepicker](https://github.com/phoenixwong/vue2-timepicker) ★84 - 下拉时间选择器
132 | - [vuejs-paginate](https://github.com/lokyoung/vuejs-paginate) ★80 - 分页VueJS组件
133 | - [vue-toast-mobile](https://github.com/ElemeFE/vue-toast-mobile) ★79 - VueJS的toast插件
134 | - [vue-datepicker](https://github.com/weifeiyue/vue-datepicker) ★78 - 漂亮的Vue日期选择器组件
135 | - [vue-easy-slider](https://github.com/shhdgit/vue-easy-slider) ★77 - Vue 2.x的滑块组件
136 | - [vue-float-label](https://github.com/bkzl/vue-float-label) ★76 - VueJS浮动标签模式
137 | - [vue-scrollbar](https://github.com/BosNaufal/vue-scrollbar) ★76 - 最简单的滚动区域组件
138 | - [vant](https://github.com/youzan/vant) ★74 - 有赞出品的Vue2.0移动UI
139 | - [vue-json-tree-view](https://github.com/arvidkahl/vue-json-tree-view) ★74 - Vue的JSON树视图
140 | - [vue-slick](https://github.com/staskjs/vue-slick) ★73 - 实现流畅轮播框的vue组件
141 | - [vue-keynote](https://github.com/znck/vue-keynote) ★73 - 实现声明性代码幻灯片
142 | - [vue-google-signin-button](https://github.com/phanan/vue-google-signin-button) ★73 - 导入谷歌登录按钮
143 | - [vue-rate](https://github.com/SinanMtl/vue-rate) ★68 - Vue评分组件
144 | - [awesome-mask](https://github.com/moip/awesome-mask) ★67 - 拥有独一无二mask的表单
145 | - [vue-radial-progress](https://github.com/wyzant-dev/vue-radial-progress) ★65 - Vue.js放射性进度条组件
146 | - [vue-quill](https://github.com/CroudSupport/vue-quill) ★65 - vue组件构建quill编辑器
147 | - [vue-date-picker](https://github.com/Bubblings/vue-date-picker) ★63 - VueJS日期选择器组件
148 | - [coffeebreak](https://github.com/Kocisov/coffeebreak) ★62 - 实时编辑CSS组件工具
149 | - [vue-good-wizard](https://github.com/xaksis/vue-good-wizard) ★61 - VueJS 2.x wizard plugin
150 | - [vue-loading](https://github.com/jkchao/vue-loading) ★60 - 使用SVG加载
151 | - [datepicker](https://github.com/vue-bulma/datepicker) ★59 - 基于flatpickr的时间选择组件
152 | - [vue-placeholders](https://github.com/lithiumjake/vue-placeholders) ★58 - 处理占位符图片和乱码
153 | - [we-vue](https://github.com/tianyong90/we-vue) ★55 - Vue2及weui1开发的组件
154 | - [vue-fullcalendar](https://github.com/CroudSupport/vue-fullcalendar) ★55 - vue FullCalendar封装
155 | - [vue-chartkick](https://github.com/ankane/vue-chartkick) ★53 - VueJS一行代码实现优美图表
156 | - [cxlt-vue2-toastr](https://github.com/chengxulvtu/cxlt-vue2-toastr) ★52 - 弹出提示的Vue2组件
157 | - [vue-formly](https://github.com/formly-js/vue-formly) ★51 - VueJS的JS表单
158 | - [vue2-autocomplete](https://github.com/BosNaufal/vue2-autocomplete) ★51 - vue2的自动完成组件
159 | - [vue-morris](https://github.com/bbonnin/vue-morris) ★50 - Vuejs组件封装Morrisjs库
160 | - [veui](https://github.com/ecomfe/veui) ★50 - VueJS百度企业UI
161 | - [vue-components](https://github.com/yunfeihuang/vue-components) ★49 - 移动端UI组件库
162 | - [vue-star-rating](https://github.com/craigh411/vue-star-rating) ★49 - 简单高度自定义的星星评级组件
163 | - [vue-tagsinput](https://github.com/Ginhing/vue-tagsinput) ★48 - 基于VueJS的标签组件
164 | - [vue-tabs](https://github.com/alexqdjay/vue-tabs) ★47 - 多tab页轻型框架
165 | - [vue-popup-mixin](https://github.com/myronliu347/vue-popup-mixin) ★47 - 用于管理弹出框的遮盖层
166 | - [vue-ripple-directive](https://github.com/PygmySlowLoris/vue-ripple-directive) ★45 - 使用Vue指令的Material波纹效果
167 | - [vue-cropper](https://github.com/xyxiao001/vue-cropper) ★42 - 一个简单的vue 的图片裁剪插件
168 | - [vue-ztree](https://github.com/lisiyizu/vue-ztree) ★41 - 用 vue 写的树层级组件
169 | - [vue-touch-keyboard](https://github.com/icebob/vue-touch-keyboard) ★41 - VueJS虚拟键盘组件
170 | - [cubeex](https://github.com/fangyongbao/cubeex) ★40 - 包含一套完整的移动UI
171 | - [vue-chart](https://github.com/miaolz123/vue-chart) ★40 - 强大的高速的vue图表解析
172 | - [vue-music-master](https://github.com/yunyi1895/vue-music-master) ★40 - vue手机端网页音乐播放器
173 | - [vue-bootstrap-table](https://github.com/jbaysolutions/vue-bootstrap-table) ★39 - 可排序可检索的表格
174 | - [vue-emoji](https://github.com/jkchao/vue-emoji) ★39 - 好用的emoji插件
175 | - [handsontable](https://github.com/vue-bulma/handsontable) ★39 - 网页表格组件
176 | - [vue-form-2](https://github.com/matfish2/vue-form-2) ★37 - 全面的HTML表单管理的解决方案
177 | - [vue-area](https://github.com/blue0728/vue-area) ★37 - 省市区三级联动插件
178 | - [vue-side-nav](https://github.com/vue-comps/vue-side-nav) ★37 - 响应式的侧边导航
179 | - [vue-image-scroll](https://github.com/ShanaMaid/vue-image-scroll) ★36 - 仿网易云音乐的vue图片滚动插件
180 | - [vue-pull-to-refresh](https://github.com/bajian/vue-pull-to-refresh) ★35 - Vue2的上拉下拉
181 | - [mint-indicator](https://github.com/mint-ui/mint-indicator) ★35 - VueJS移动加载指示器插件
182 | - [vue-image-clip](https://github.com/legeneek/vue-image-clip) ★34 - 基于vue的图像剪辑组件
183 | - [vue-material-design](https://github.com/loujiayu/vue-material-design) ★34 - Vue MD风格组件
184 | - [vue-simple-upload](https://github.com/saivarunk/vue-simple-upload) ★31 - 简单的VueJS上传组件
185 | - [chartjs](https://github.com/vue-bulma/chartjs) ★29 - Vue Bulma的chartjs组件
186 | - [vue-lazy-background-images](https://github.com/darrynten/vue-lazy-background-images) ★29 - 懒加载背景组件的Vue组件
187 | - [vue-ripple](https://github.com/BosNaufal/vue-ripple) ★29 - 制作谷歌MD风格涟漪效果的Vue组件
188 | - [vue-scroll](https://github.com/suguangwen/vue-scroll) ★27 - vue滚动
189 | - [laravel-vue-pagination](https://github.com/gilbitron/laravel-vue-pagination) ★26 - VueJS分页组件
190 | - [vue-datepicker-simple](https://github.com/dai-siki/vue-datepicker-simple) ★26 - 基于vue的日期选择器
191 | - [vue-m-carousel](https://github.com/shiye515/vue-m-carousel) ★26 - vue 移动端轮播组件
192 | - [vue-parallax](https://github.com/vue-comps/vue-parallax) ★23 - 整洁的视觉效果
193 | - [vue-img-loader](https://github.com/JackGit/vue-img-loader) ★22 - 图片加载UI组件
194 | - [vue-tree](https://github.com/weibangtuo/vue-tree) ★22 - vue树视图组件
195 | - [vue-verify-pop](https://github.com/aweiu/vue-verify-pop) ★22 - 带气泡提示的vue校验插件
196 | - [vue-waves](https://github.com/Teddy-Zhu/vue-waves) ★22 - waves的VueJS版本
197 | - [vue-smoothscroll](https://github.com/Teddy-Zhu/vue-smoothscroll) ★20 - smoothscroll的VueJS版本
198 | - [vue-city](https://github.com/xinxingyu/vue-city) ★19 - 城市选择器
199 | - [vue-laypage](https://github.com/sinchang/vue-laypage) ★17 - 简单的VueJS分页组件
200 | - [vue-typewriter](https://github.com/eduardostuart/vue-typewriter) ★15 - vue组件类型
201 | - [vue-ios-alertview](https://github.com/Treri/vue-ios-alertview) ★14 - iOS7+ 风格的alertview服务
202 | - [vue-cmap](https://github.com/doodlewind/vue-cmap) ★14 - Vue China map可视化组件
203 | - [paco-ui-vue](https://github.com/yeseason/paco-ui-vue) ★12 - PACOUI的vue组件
204 | - [vue-cascading-address](https://github.com/savokiss/vue-cascading-address) ★9 - vue地区选择器
205 | - [dd-vue-component](https://github.com/ibufu/dd-vue-component) ★7 - 订单来了的公共组件库
206 | - [vue-button](https://github.com/steven5538/vue-button) ★5 - Vue按钮组件
207 | - [vue-canvas](https://github.com/calamus0427/calamus-vue-canvas)★1 - 不开玩笑,我自己写的vue-canvas背景动画特效,慢慢更新,希望不被嫌弃
208 |
209 | ## 开发框架
210 |
211 | - [vue.js](https://github.com/vuejs/vue) ★87548 - 流行的轻量高效的前端组件化方案
212 | - [vue-element-admin](https://github.com/PanJiaChen/vue-element-admin) ★10046 - vue2管理系统模板,包括vuex、权限管理等功能越来越全面
213 | - [vue-admin](https://github.com/fundon/vue-admin) ★7528 - Vue管理面板框架
214 | - [quasar](https://github.com/quasarframework/quasar) ★5453 - 响应式网站和混合移动应用程序
215 | - [electron-vue](https://github.com/SimulatedGREG/electron-vue) ★2085 - Electron及VueJS快速启动样板
216 | - [vuepack](https://github.com/egoist/vuepack) ★1618 - 现代VueJS启动器
217 | - [N3-components](https://github.com/N3-components/N3-components) ★656 - 快速构建页面和应用
218 | - [vue-layout](https://github.com/jaweii/Vue-Layout)★627 - 可视化vue布局框架
219 | - [VueThink](https://github.com/honraytech/VueThink) ★373 - 前后端分离框架
220 | - [vue-2.0-boilerplate](https://github.com/petervmeijgaard/vue-2.0-boilerplate) ★358 - Vue2单页应用样板
221 | - [vue-spa-template](https://github.com/hanan198501/vue-spa-template) ★344 - 前后端分离后的单页应用开发
222 | - [Framework7-Vue](https://github.com/nolimits4web/Framework7-Vue) ★283 - VueJS与Framework7结合
223 | - [vue-bulma](https://github.com/wangxg2016/vue-bulma) ★215 - 轻量级高性能MVVM Admin UI框架
224 | - [vuetiful](https://github.com/andrewcourtice/vuetiful) ★189 - 创建业务及管理应用程序
225 | - [vue-stack-2.0](https://github.com/cklmercer/vue-stack-2.0) ★155 - Vue2项目样板
226 | - [vue2-admin-lte](https://github.com/devjin0617/vue2-admin-lte) ★154 - vue2版本的adminLTE
227 | - [jspangAdmin](https://github.com/shenghy/jspangAdmin) ★140 - 基于Vue2的后台管理系统
228 | - [vue-fullstack](https://github.com/erguotou520/vue-fullstack) ★140 - 实时的用户友好的后台系统
229 | - [vue-paper-dashboard](https://github.com/cristijora/vue-paper-dashboard) ★120 - Vue的Tim Paper 仪表盘
230 | - [vue-webgulp](https://github.com/rodzzlessa24/vue-webgulp) ★113 - 仿VueJS Vue loader示例
231 | - [vue-element-starter](https://github.com/Metnew/vue-element-starter) ★83 - vue启动页
232 | - [vuemin](https://github.com/yangjiewu/vuemin) ★17 - 基于Vue的企业级前端开发框架
233 | - [vue-team-template](https://github.com/woleicom/vue-team-template) ★12 - 一种构建vue项目的选择方案
234 | - [vue-element-admin](https://github.com/calamus0427/vue-element-admin-calamus) ★1 - 我又来卖弄自己的作品了,简单的后台管理框架?
235 |
236 |
237 | ## 实用库
238 |
239 | - [vuex](https://github.com/vuejs/vuex) ★13375 - 专为 Vue.js 应用程序开发的状态管理模式
240 | - [vue-loader](https://github.com/vuejs/vue-loader) ★2819 - Vue.js 针对Webpack的组件装载插件
241 | - [vue-validator](https://github.com/vuejs/vue-validator) ★1807 - vue的验证器插件
242 | - [vue-lazyload](https://github.com/hilongjw/vue-lazyload) ★2781 - 用于懒加载的Vue模块
243 | - [vuelidate](https://github.com/monterail/vuelidate) ★1075 - 简单轻量级的基于模块的Vue.js验证
244 | - [vue-i18n](https://github.com/kazupon/vue-i18n) ★1053 - VueJS的多语言切换插件
245 | - [qingcheng](https://github.com/zerqu/qingcheng) ★736 - qingcheng主题
246 | - [Vue-Socketio](https://github.com/MetinSeylan/Vue-Socket.io) ★533 - VueJS的socketio实现
247 | - [vue-awesome](https://github.com/Justineo/vue-awesome) ★532 - VueJS字体Awesome组件
248 | - [vue-desktop](https://github.com/ElemeFE/vue-desktop) ★496 - 创建管理面板网站的UI库
249 | - [vue-axios](https://github.com/imcvampire/vue-axios) ★491 - 将axios整合到VueJS的封装
250 | - [vue-meta](https://github.com/declandewet/vue-meta) ★467 - 管理app的meta信息
251 | - [vue-head](https://github.com/ktquez/vue-head) ★396 - head标签的meta信息操作
252 | - [meteor-vue-component](https://github.com/Akryum/meteor-vue-component) ★382 - vue和meteor整合
253 | - [avoriaz](https://github.com/eddyerburgh/avoriaz) ★338 - VueJS测试实用工具库
254 | - [portal-vue](https://github.com/LinusBorg/portal-vue) ★239 - 在组件外部渲染DOM
255 | - [vue-flatpickr](https://github.com/jrainlau/vue-flatpickr) ★228 - 封装Flatpickr的Vue组件
256 | - [vue-timeago](https://github.com/egoist/vue-timeago) ★195 - VueJS的时间前组件
257 | - [blessed-vue](https://github.com/lyonlai/blessed-vue) ★181 - 编写命令行UI的VueJS运行时
258 | - [vue-unit](https://github.com/wrseward/vue-unit) ★179 - 创建单元测试组件
259 | - [vue-authenticate](https://github.com/dgrubelic/vue-authenticate) ★177 - 简单的VueJS身份认证库
260 | - [vue-scrollTo](https://github.com/rigor789/vue-scrollTo) ★174 - 滚动到元素的VueJS指令
261 | - [vue-svg-icon](https://github.com/cenkai88/vue-svg-icon) ★157 - vue2的可变彩色svg图标方案
262 | - [vue-focus](https://github.com/simplesmiler/vue-focus) ★148 - 可重用VueJS组件的焦点指令
263 | - [meteor-vue](https://github.com/zhouzhuojie/meteor-vue) ★134 - VueJS和Meteor的桥接
264 | - [element-admin](https://github.com/lynzz/element-admin) ★130 - 支持 vuecli 的 Element UI 的后台模板
265 | - [vuep](https://github.com/QingWei-Li/vuep) ★118 - 用实时编辑和预览来渲染Vue组件
266 | - [vuet](https://github.com/medevicex/vuet) ★116 - 一个跨页面、跨组件的状态管理插件
267 | - [vue-bootstrap-modal](https://github.com/Coffcer/vue-bootstrap-modal) ★112 - vue的Bootstrap样式组件
268 | - [vue-animate](https://github.com/haydenbbickerton/vue-animate) ★106 - 跨浏览器CSS3动画库
269 | - [vue-property-decorator](https://github.com/kaorun343/vue-property-decorator) ★104 - VueJS和属性Decorator
270 | - [vue-aplayer](https://github.com/SevenOutman/vue-aplayer) ★100 - 便于配置的音乐播放器vue2组件
271 | - [vue-password-strength-meter](https://github.com/apertureless/vue-password-strength-meter) ★97 - 交互式密码强度计
272 | - [vue-websocket](https://github.com/icebob/vue-websocket) ★91 - VueJS的Websocket插件
273 | - [vue-local-storage](https://github.com/pinguinjkeke/vue-local-storage) ★88 - 具有类型支持的Vuejs本地储存插件
274 | - [vue-recyclist](https://github.com/xtongs/vue-recyclist) ★88 - vuejs无限滚动列表
275 | - [vue-lazy-render](https://github.com/yeyuqiudeng/vue-lazy-render) ★87 - 用于Vue组件的延迟渲染
276 | - [vue-qart](https://github.com/superman66/vue-qart) ★86 - 用于qartjs的Vue2指令
277 | - [vue-framework7](https://github.com/lmk123/vue-framework7) ★85 - 结合VueJS使用的Framework7组件
278 | - [vue-cordova](https://github.com/kartsims/vue-cordova) ★85 - Cordova的VueJS插件
279 | - [http-vue-loader](https://github.com/FranckFreiburger/http-vue-loader) ★84 - 从html及js环境加载vue文件
280 | - [vue-parallax](https://github.com/apertureless/vue-parallax) ★84 - 快速60fps视差滚动效果组件
281 | - [vue-clipboard](https://github.com/xiaokaike/vue-clipboard) ★84 - VueJS的剪贴板
282 | - [vue-kindergarten](https://github.com/JiriChara/vue-kindergarten) ★83 - 将kindergarten集成到VueJS应用
283 | - [vue-events](https://github.com/cklmercer/vue-events) ★83 - 简化事件的VueJS插件
284 | - [vue-notifications](https://github.com/se-panfilov/vue-notifications) ★80 - 非阻塞通知库
285 | - [vue-online](https://github.com/Sopamo/vue-online) ★77 - reactive的在线和离线组件
286 | - [vue-shortkey](https://github.com/iFgR/vue-shortkey) ★74 - 应用于Vue.js的Vue-ShortKey 插件
287 | - [vue-bus](https://github.com/yangmingshan/vue-bus) ★71 - VueJS的事件总线
288 | - [vuex-i18n](https://github.com/dkfbasel/vuex-i18n) ★71 - 定位插件
289 | - [uiv](https://github.com/wxsms/uiv) ★70 - Vue实现的Bootstrap组件
290 | - [vue-router-transition](https://github.com/weinot/vue-router-transition) ★69 - 页面过渡插件
291 | - [vue-gesture](https://github.com/mlyknown/vue-gesture) ★69 - VueJS的手势事件插件
292 | - [vue-clip](https://github.com/thetutlage/vue-clip) ★67 - 简约的破解文件上传器
293 | - [vue-electron](https://github.com/SimulatedGREG/vue-electron) ★66 - 将选择的API封装到Vue对象中的插件
294 | - [cleave](https://github.com/vue-bulma/cleave) ★64 - 基于cleave.js的Cleave组件
295 | - [vuemit](https://github.com/gocanto/vuemit) ★63 - 处理VueJS事件
296 | - [vue-worker](https://github.com/israelss/vue-worker) ★56 - 使用webworkers的Vue插件
297 | - [vue-acl](https://github.com/leonardovilarinho/vue-acl) ★54 - VueJS访问控制列表插件
298 | - [vue-ts-loader](https://github.com/HerringtonDarkholme/vue-ts-loader) ★54 - 在Vue装载机检查脚本
299 | - [Vue.resize](https://github.com/David-Desmaisons/Vue.resize) ★51 - 检测HTML调整大小事件的vue指令
300 | - [vuedeux](https://github.com/Vuedeux/vuedeux) ★50 - 轻量级开源实用用层
301 | - [vue-ls](https://github.com/RobinCK/vue-ls) ★49 - 适配Vuecontext中LocalStorage的Vue插件
302 | - [lazy-vue](https://github.com/gocanto/lazy-vue) ★48 - 懒加载图片
303 | - [vue-pagination-2](https://github.com/matfish2/vue-pagination-2) ★46 - 简单通用的分页组件
304 | - [v-media-query](https://github.com/AStaroverov/v-media-query) ★44 - vue中添加用于配合媒体查询的方法
305 | - [vue-observe-visibility](https://github.com/Akryum/vue-observe-visibility) ★42 - 当元素在页面上可见或隐藏时检测
306 | - [vue-lazy-component](https://github.com/Coffcer/vue-lazy-component) ★38 - 懒加载组件或者元素的Vue指令
307 | - [vue-reactive-storage](https://github.com/ropbla9/vue-reactive-storage) ★37 - vue插件的Reactive层
308 | - [vue-helmet](https://github.com/miaolz123/vue-helmet) ★37 - HTML标题管理器
309 | - [voir](https://github.com/richardanaya/voir) ★35 - 保持mutation与视图组件的分离
310 | - [vuex-shared-mutations](https://github.com/xanf/vuex-shared-mutations) ★34 - 分享某种Vuex mutations
311 | - [vue-drag-zone](https://github.com/surmon-china/vue-drag-zone) ★28 - 适用于Vue2的dom拖动组件
312 | - [vue-eslint-parser](https://github.com/mysticatea/vue-eslint-parser) ★27 - ESLint自定义解析
313 | - [modal](https://github.com/vue-bulma/modal) ★26 - Vue Bulma的modal组件
314 | - [vue-plan](https://github.com/wakeupmypig/vue-plan) ★25 - Vuex-状态管理
315 | - [vue-file-base64](https://github.com/BosNaufal/vue-file-base64) ★22 - 将文件转换为Base64的vue组件
316 | - [vue-methods-promise](https://github.com/lzxb/vue-methods-promise) ★21 - 使vue方法支持promise
317 | - [Vue.ImagesLoaded](https://github.com/David-Desmaisons/Vue.ImagesLoaded) ★20 - 检测图片加载的VueJS指令
318 | - [Famous-Vue](https://github.com/irwansyahwii/Famous-Vue) ★16 - Famous库的vue组件
319 | - [leo-vue-validator](https://github.com/LeoHuiyi/leo-vue-validator) ★15 - 异步的表单验证组件
320 | - [vue-titlecase](https://github.com/Haixing-Hu/vue-titlecase) ★13 - 用于字符串titlecased的VueJS过滤器
321 | - [Vue-Easy-Validator](https://github.com/MetinSeylan/Vue-Easy-Validator) ★12 - 简单的表单验证
322 | - [vue-zoombox](https://github.com/vue-comps/vue-zoombox) ★12 - 一个高级zoombox
323 | - [vue-truncate-filter](https://github.com/imcvampire/vue-truncate-filter) ★10 - 截断字符串的VueJS过滤器
324 | - [vue-router-storage](https://github.com/ElderJames/vue-router-storage) ★9 - vue历史路由持久化的解决方案
325 | - [vue-input-autosize](https://github.com/syropian/vue-input-autosize) ★9 - 基于内容自动调整文本输入的大小
326 | - [vue-data-validator](https://github.com/phphe/vue-data-validator) ★4 - Vuejs2的数据验证插件
327 | - [vue-lazyloadImg](https://github.com/yodfz/vue-lazyloadImg) ★4 - 图片懒加载插件
328 |
329 | ## 服务端
330 |
331 | - [nuxt.js](https://github.com/nuxt/nuxt.js) ★4564 - 用于服务器渲染Vue app的最小化框架
332 | - [unvue](https://github.com/egoist/unvue) ★310 - 使用简单的通用VueJS应用
333 | - [express-vue](https://github.com/danmademe/express-vue) ★302 - 简单的使用服务器端渲染vue.js
334 | - [vue-ssr](https://github.com/ccforward/vue-ssr) ★92 - 非常简单的VueJS服务器端渲染模板
335 | - [doubanMovie-SSR](https://github.com/monkeyWangs/doubanMovie-SSR) ★85 - Vue豆瓣电影服务端渲染
336 | - [vue-ssr](https://github.com/hilongjw/vue-ssr) ★80 - 结合Express使用Vue2服务端渲染
337 | - [vue-easy-renderer](https://github.com/leaves4j/vue-easy-renderer) ★44 - Nodejs服务端渲染
338 |
339 | ## 辅助工具
340 |
341 | - [vue-play](https://github.com/vue-play/vue-play) ★641 - 展示Vue组件的最小化框架
342 | - [DejaVue](https://github.com/MiCottOn/DejaVue) ★635 - Vuejs可视化及压力测试
343 | - [vscode-VueHelper](https://github.com/OYsun/vscode-VueHelper) ★228 - 目前vscode最好的vue代码提示插件
344 | - [vue-generate-component](https://github.com/NetanelBasal/vue-generate-component) ★56 - 轻松生成Vue js组件的CLI工具
345 | - [vue-multipage-cli](https://github.com/xwpongithub/vue-multipage-cli) ★40 - 简单的多页CLI
346 | - [VuejsStarterKit](https://github.com/MetinSeylan/VuejsStarterKit) ★29 - vuejs starter套件
347 |
348 | ## 应用实例
349 |
350 | - [koel](https://github.com/phanan/koel) ★7773 - 基于网络的个人音频流媒体服务
351 | - [pagekit](https://github.com/pagekit/pagekit) ★4225 - 轻量级的CMS建站系统
352 | - [vue-manage-system](https://github.com/lin-xin/vue-manage-system) ★2057 - 后台管理系统解决方案
353 | - [vuedo](https://github.com/Vuedo/vuedo) ★1265 - 博客平台
354 | - [jackblog-vue](https://github.com/jackhutu/jackblog-vue) ★1120 - 个人博客系统
355 | - [PJ Blog](https://github.com/jcc/blog) ★1018 - 开源博客
356 | - [vue-cnode](https://github.com/lzxb/vue-cnode) ★787 - 重写vue版cnode社区
357 | - [vms](https://github.com/ericjjj/vms) ★629 - vuejs2管理系统
358 | - [CMS-of-Blog](https://github.com/ycwalker/CMS-of-Blog) ★541 - 博客内容管理器
359 | - [goldfish](https://github.com/Caiyeon/goldfish) ★518 - 用于HashiCorp Vault的Admin UI
360 | - [rss-reader](https://github.com/mrgodhani/rss-reader) ★368 - 简单的rss阅读器
361 | - [vue-ghpages-blog](https://github.com/viko16/vue-ghpages-blog) ★254 - 依赖GitHub Pages无需本地生成的静态博客
362 | - [vue-blog](https://github.com/surmon-china/vue-blog) ★143 - 使用Vue2.0 和Vuex的vue-blog
363 | - [swoole-vue-webim](https://github.com/wh469012917/swoole-vue-webim) ★137 - Web版的聊天应用
364 | - [tomato5](https://github.com/zhangxin840/tomato5) ★134 - 实时的协作工具
365 | - [Loopa-News](https://github.com/Angarsk8/Loopa-News) ★133 - 开源社会新闻应用
366 | - [vue2-management-platform](https://github.com/reg21st/vue2-management-platform) ★74 - vue2.0+ elementUI 后台管理平台
367 | - [vue-dashing-js](https://github.com/thelinuxlich/vue-dashing-js) ★70 - nuvo-dashing-js的fork
368 | - [fewords](https://github.com/sapjax/fewords) ★63 - 功能极其简单的笔记本
369 | - [adminify](https://github.com/wxs77577/adminify) ★46 - 一个基于Vuetify material的Admin面板
370 |
371 | ## Demo示例
372 |
373 | - [vue2-elm](https://github.com/bailicangdu/vue2-elm) ★8036 - 重写饿了么webapp
374 | - [Vue-cnodejs](https://github.com/shinygang/Vue-cnodejs) ★2491 - 基于vue重写Cnodejs.org的webapp
375 | - [NeteaseCloudWebApp](https://github.com/javaSwing/NeteaseCloudWebApp) ★1549 - 高仿网易云音乐的webapp
376 | - [vue2-happyfri](https://github.com/bailicangdu/vue2-happyfri) ★1535 - vue2及vuex的入门练习项目
377 | - [vue-zhihu-daily](https://github.com/hilongjw/vue-zhihu-daily) ★1010 - 知乎日报 with Vuejs
378 | - [vue2-demo](https://github.com/lzxb/vue2-demo) ★994 - 从零构建vue2 + vue-router + vuex 开发环境
379 | - [vue-wechat](https://github.com/useryangtao/vue-wechat) ★939 - vue.js开发微信app界面
380 | - [eleme](https://github.com/liangxiaojuan/eleme) ★882 - 高仿饿了么app商家详情
381 | - [vue-demo](https://github.com/kenberkeley/vue-demo) ★755 - vue简易留言板
382 | - [bilibili-vue](https://github.com/lybenson/bilibili-vue) ★694 - 全栈式开发bilibili首页
383 | - [spa-starter-kit](https://github.com/codecasts/spa-starter-kit) ★646 - 单页应用启动套件
384 | - [VueDemo_Sell_Eleme](https://github.com/SimonZhangITer/VueDemo_Sell_Eleme) ★636 - Vue2高仿饿了么外卖平台
385 | - [vue-music](https://github.com/Sioxas/vue-music) ★621 - Vue 音乐搜索播放
386 | - [douban](https://github.com/jeneser/douban) ★606 - 基于vue全家桶的精致豆瓣DEMO
387 | - [vue-Meizi](https://github.com/liangxiaojuan/vue-Meizi) ★604 - vue最新实战项目
388 | - [maizuo](https://github.com/zhengguorong/maizuo) ★603 - vue/vuex/redux仿卖座网
389 | - [vue-WeChat](https://github.com/zhaohaodang/vue-WeChat) ★558 - 基于Vue2高仿微信App的单页应用
390 | - [vue-demo-kugou](https://github.com/lavyun/vue-demo-kugou) ★500 - vuejs仿写酷狗音乐webapp
391 | - [vue2-manage](https://github.com/bailicangdu/vue2-manage) ★457 - 基于 vue + element-ui 的后台管理系统
392 | - [zhihudaily-vue](https://github.com/yatessss/zhihudaily-vue) ★455 - 知乎日报web版
393 | - [vue-163-music](https://github.com/ShanaMaid/vue-163-music) ★448 - vue仿网易云音乐客户端版
394 | - [vue-axios-github](https://github.com/superman66/vue-axios-github) ★448 - 登录拦截登出功能
395 | - [douban](https://github.com/jiakeqi/douban) ★440 - 模仿豆瓣前端
396 | - [vue-shopping](https://github.com/andylei18/vue-shopping) ★404 - 蘑菇街移动端
397 | - [vue2.0-taopiaopiao](https://github.com/canfoo/vue2.0-taopiaopiao) ★402 - vue2.0与express构建淘票票页面
398 | - [xyy-vue](https://github.com/hzzly/xyy-vue) ★396 - 大学生交流平台
399 | - [easy-vue](https://github.com/TIGERB/easy-vue) ★370 - 使用Vue实现简易web
400 | - [vue2.x-douban](https://github.com/superman66/vue2.x-douban) ★360 - Vue2实现简易豆瓣电影webApp
401 | - [vue2-MiniQQ](https://github.com/jiangqizheng/vue2-MiniQQ) ★351 - 基于Vue2实现的仿手机QQ单页面应用
402 | - [mi-by-vue](https://github.com/wendaosanshou/mi-by-vue) ★291 - VueJS仿小米官网
403 | - [daily-zhihu](https://github.com/walleeeee/daily-zhihu) ★275 - 基于Vue2的知乎日报单页应用
404 | - [vue-leancloud-blog](https://github.com/jiangjiu/vue-leancloud-blog) ★268 - 一个前后端完全分离的单页应用
405 | - [VueMusic-PC](https://github.com/Reusjs/VueMusic-PC) ★260 - Vue.js高还原网易云音乐系列
406 | - [node-vue-server-webpack](https://github.com/yjj5855/node-vue-server-webpack) ★253 - Node.js+Vue.js+webpack快速开发框架
407 | - [beauty](https://github.com/beauty-enjoy/beauty) ★245 - 豆瓣美女clone
408 | - [vue-adminLte-vue-router](https://github.com/liujians/vue-adminLte-vue-router) ★243 - vue和adminLte整合应用
409 | - [vue-fis3](https://github.com/okoala/vue-fis3) ★217 - 流行开源工具集成demo
410 | - [notepad](https://github.com/lin-xin/notepad) ★216 - 本地存储的记事本
411 | - [vue-demo-maizuo](https://github.com/ChuckCZC/vue-demo-maizuo) ★210 - 使用Vue2全家桶仿制卖座电影
412 | - [Pixel-Web](https://github.com/Werb/Pixel-Web) ★198 - 一个 Vue 微博客户端
413 | - [netease_yanxuan](https://github.com/MengZhaoFly/netease_yanxuan) ★198 - vue版网易严选
414 | - [tmdb-app](https://github.com/dmtrbrl/tmdb-app) ★194 - TMDbVueJS应用
415 | - [vue-express-mongodb](https://github.com/xrr2016/vue-express-mongodb) ★189 - 简单的前后端分离案例
416 | - [vue-zhihudaily](https://github.com/iHaPBoy/vue-zhihudaily) ★187 - 知乎日报 Web 版本
417 | - [Vdo](https://github.com/RalfZhang/Vdo) ★179 - VueJS与MD重构豆瓣
418 | - [vue-blog](https://github.com/BUPT-HJM/vue-blog) ★171 - 单用户博客
419 | - [Wuji](https://github.com/xiaobinwu/Wuji) ★168 - 吾记网页版
420 | - [hello-vue-django](https://github.com/rokups/hello-vue-django) ★160 - 使用带有Django的vuejs的样板项目
421 | - [Zhihu-Daily-Vue.js](https://github.com/pomelo-chuan/Zhihu-Daily-Vue.js) ★157 - Vuejs单页网页应用
422 | - [tencent-sports](https://github.com/renjie1996/tencent-sports) ★154 - Vue全家桶仿腾讯体育
423 | - [gouyan-movie-vue](https://github.com/zhixuanziben/gouyan-movie-vue) ★151 - 基于vue的在线电影影讯网站
424 | - [x-blog](https://github.com/CommanderXL/x-blog) ★145 - 开源的个人blog项目
425 | - [vue-musicApp](https://github.com/lxyisme/vue-musicApp) ★132 - 使用vue全家桶制作的音乐播放器
426 | - [vue-cnode](https://github.com/wszgxa/vue-cnode) ★131 - vue单页应用demo
427 | - [webpack-vue-vueRouter](https://github.com/193Eric/webpack-vue-vueRouter) ★130 - webpack及vue开发的简单项目实例
428 | - [vue-koa-demo](https://github.com/Molunerfinn/vue-koa-demo) ★128 - 使用Vue2和Koa1的全栈demo
429 | - [vueBlog](https://github.com/elva2596/vueBlog) ★127 - 前后端分离博客
430 | - [websocket_chat](https://github.com/secreter/websocket_chat) ★127 - 基于vue和websocket的多人在线聊天室
431 | - [houtai](https://github.com/peng1992/houtai) ★125 - 基于vue和Element的后台管理系统
432 | - [vue-toutiao](https://github.com/hcy1996/vue-toutiao) ★121 - vuejs高仿今日头条移动端
433 | - [vue-cnode](https://github.com/microzz/vue-cnode) ★121 - 开源的CNode社区
434 | - [vue-mini-shop](https://github.com/BosNaufal/vue-mini-shop) ★121 - VueJS在线商店
435 | - [photoShare](https://github.com/beidan/photoShare) ★120 - 基于图片分享的社交平台
436 | - [iview2-management-system](https://github.com/vanishcode/iview2-management-system) ★119 - 后台管理系统解决方案简单示例
437 | - [doubanMovie](https://github.com/monkeyWangs/doubanMovie) ★119 - 豆瓣电影展示
438 | - [eleme-vue2](https://github.com/hbxywdk/eleme-vue2) ★112 - 仿饿了么H5纯前端Vue版
439 | - [vue-zhihu-daily](https://github.com/cccyb/vue-zhihu-daily) ★111 - 基于Vue全家桶开发的知乎日报
440 | - [Vue-News](https://github.com/biaodigit/Vue-News) ★107 - 基于vue全家桶的仿知乎日报单页应用
441 | - [douban-movie](https://github.com/xingbofeng/douban-movie) ★107 - 仿豆瓣电影wap端
442 | - [generator-loopback-vue](https://github.com/qxl1231/generator-loopback-vue) ★104 - 典型前后端分离项目模板
443 | - [vue-quasar-admin-example](https://github.com/odranoelBR/vue-quasar-admin-example) ★99 - 将Quasar和VueJS应用于SPA项目
444 | - [vue-zhihudaily-2.0](https://github.com/cs1707/vue-zhihudaily-2.0) ★97 - 使用Vue2.0+vue-router+vuex创建的zhihudaily
445 | - [vue-todos](https://github.com/liangxiaojuan/vue-todos) ★95 - vue最新实战项目教程
446 | - [vue-music](https://github.com/ddqre12345/vue-music) ★91 - 网易云音乐Demo
447 | - [vue-qqmusic](https://github.com/Panda-Hope/vue-qqmusic) ★90 - Vue全家桶+Mint-Ui打造高仿QQMusic
448 | - [vue2.x-Cnode](https://github.com/vincentSea/vue2.x-Cnode) ★88 - 基于vue全家桶的Cnode社区
449 | - [vue-ruby-china](https://github.com/hql123/vue-ruby-china) ★86 - VueJS框架搭建的rubychina平台
450 | - [doubanMovie-SSR](https://github.com/monkeyWangs/doubanMovie-SSR) ★85 - Vue豆瓣电影服务端渲染
451 | - [vue-jd](https://github.com/huangche007/vue-jd) ★76 - 京东移动web商城
452 | - [vue-nReader](https://github.com/zimplexing/vue-nReader) ★73 - 使用vue2.0 + vue-router + vuex 的一个多页面小说阅读webapp
453 | - [VueBlog](https://github.com/FatDong1/VueBlog) ★73 - 前后端分离的个人博客
454 | - [Zhihu_Daily](https://github.com/littlewin-wang/Zhihu_Daily) ★73 - 基于Vue和Nodejs的Web单页应用
455 | - [vue-koa2-login](https://github.com/sinner77/vue-koa2-login) ★67 - 使用 VueJS & NodeJS 实现的登录注册
456 | - [webApp](https://github.com/houbx/webApp) ★64 - Vue2的移动端webApp音乐播放器
457 | - [vue-trip](https://github.com/wenye123/vue-trip) ★64 - vue2做的出行webapp
458 | - [seeMusic](https://github.com/Alex-xd/seeMusic) ★63 - 跨平台云音乐播放器
459 | - [github-explorer](https://github.com/SidKwok/github-explorer) ★63 - 寻找最有趣的GitHub库
460 | - [vue-cli-multipage-bootstrap](https://github.com/zhoou/vue-cli-multipage-bootstrap) ★60 - 将vue官方在线示例整合到组件中
461 | - [vue-XiaoMi-Shop](https://github.com/beautifulBoys/vue-XiaoMi-Shop) ★59 - 高仿小米商城的项目
462 | - [Vue-NetEaseCloudMusic](https://github.com/leehomeok/Vue-NetEaseCloudMusic) ★59 - 模仿IOS版网易云音乐的手机网站
463 | - [life-app-vue](https://github.com/shaqihe/life-app-vue) ★59 - 使用vue2完成多功能集合到小webapp
464 | - [doubanApp](https://github.com/MrMoveon/doubanApp) ★55 - 用vue2实现仿豆瓣app
465 | - [ios7-vue](https://github.com/QRL909109/ios7-vue) ★52 - 使用vue2.0 vue-router vuex模拟ios7
466 | - [canvas-vue](https://github.com/hzzly/canvas-vue) ★50 - 一个Vue+Cnavas酷炫后台管理
467 | - [vue-bushishiren](https://github.com/nswbmw/vue-bushishiren) ★49 - 不是诗人应用
468 | - [vue-ssr-boilerplate](https://github.com/albertchan/vue-ssr-boilerplate) ★48 - 精简版的ofvue-hackernews-2
469 | - [vuecommunity](https://github.com/gaohongwei11/vuecommunity) ★47 - vue.js中文社区
470 | - [vue-music163](https://github.com/pluto1114/vue-music163) ★47 - 音乐VueJS项目
471 | - [Vue2-MV](https://github.com/safaring/Vue2-MV) ★45 - 仿网易云音乐MV的webapp
472 | - [musiccloudWebapp](https://github.com/hua1995116/musiccloudWebapp) ★44 - 用vuejs仿网易云音乐
473 | - [cnode-vue](https://github.com/BubblyPoker/cnode-vue) ★40 - 基于vue和vue-router构建的cnodejs web网站SPA
474 | - [Framework7-VueJS](https://github.com/tyllo/Framework7-VueJS) ★38 - 使用移动框架的示例
475 | - [m-eleme](https://github.com/JerryYgh/m-eleme) ★37 - 基于Vue全家桶仿饿了么移动端webapp
476 | - [sls-vuex2-demo](https://github.com/sailengsi/sls-vuex2-demo) ★37 - vuex2商城购物车demo
477 | - [eagles](https://github.com/silianpan/eagles) ★36 - 各种组件封装
478 | - [Todos_Vuejs](https://github.com/fishenal/Todos_Vuejs) ★35 - vuejs2搭建的极简的todolist
479 | - [vue-cnode](https://github.com/jiananle/vue-cnode) ★35 - 用 Vue 做的 CNode 官网
480 | - [HyaReader](https://github.com/GitaiQAQ/HyaReader) ★35 - 移动友好的阅读器
481 | - [Vue-Admin](https://github.com/lanux/Vue-Admin) ★33 - 基于Vue2的Admin系统
482 | - [vue2-hybridapp-haoshiqi](https://github.com/liupeijun/vue2-hybridapp-haoshiqi) ★32 - 实现单页面webapp以及hybridapp
483 | - [zhihu-daily](https://github.com/xrr2016/zhihu-daily) ★32 - 轻松查看知乎日报内容
484 | - [gank](https://github.com/xandeer/gank) ★32 - gankio资源的阅读应用
485 | - [vue-h5plus](https://github.com/NewsNIng/vue-h5plus) ★31 - 前卫的vue及html5plus跨平台demo
486 | - [vue-cnode-mobile](https://github.com/soulcm/vue-cnode-mobile) ★29 - 搭建cnode社区
487 | - [vue-weather](https://github.com/alanWongsGithub/vue-weather) ★26 - 基于vue.js 2.0的百度天气应用
488 | - [vue-user-center](https://github.com/doterlin/vue-user-center) ★26 - vuejs直播类应用web端个人中心
489 | - [zhihu-daily-vue](https://github.com/moonou/zhihu-daily-vue) ★22 - 知乎日报
490 | - [vue-cnode](https://github.com/Damonlw/vue-cnode) ★22 - 使用cNode社区提供的接口
491 | - [vue-starter](https://github.com/BosNaufal/vue-starter) ★22 - VueJs项目的简单启动页
492 | - [node-vue-fabaocn](https://github.com/wx1993/node-vue-fabaocn) ★21 - 基于 node 和 vue 实现的移动官网
493 | - [vue-memo](https://github.com/youknowznm/vue-memo) ★20 - 用 vue写的记事本应用
494 | - [v-notes](https://github.com/Halfeld/v-notes) ★20 - 简单美观的记事本
495 | - [vue-flexible-app](https://github.com/momopig/vue-flexible-app) ★19 - vue开发的一个简易app
496 | - [simply-calculator-vuejs](https://github.com/CaiYiLiang/simply-calculator-vuejs) ★19 - 用VueJS实现简易计算器
497 | - [vue-dropload](https://github.com/ITCNZ/vue-dropload) ★19 - 用以测试下拉加载与简单路由
498 | - [Vuejs-SalePlatform](https://github.com/fishenal/Vuejs-SalePlatform) ★19 - vuejs搭建的售卖平台demo
499 | - [vue-shopping-mall](https://github.com/hj624608494/vue-shopping-mall) ★16 - 基于Vue.js 2.x系列 + vue2-router + axios + iview 商城
500 | - [qqmusic](https://github.com/yangbo5207/qqmusic) ★13 - QQ音乐vue
501 | - [vue-weather](https://github.com/deshes/vue-weather) ★12 - VueJS天气demo
502 |
--------------------------------------------------------------------------------