Skip to content

Instantly share code, notes, and snippets.

View llccing's full-sized avatar
🎯
Focusing

Rowan Liu llccing

🎯
Focusing
View GitHub Profile
function filterDataByMonth(data) {
// 得到按时间排序的数据
var numArr = data.map(function (crtVal, idx, arr) {
return {
amount: crtVal.amount,
month: parseInt(crtVal.month)
}
}).sort(function (a, b) {
return a.month - b.month;
});
@llccing
llccing / installing-node-for-ubuntu-with-nvm.md
Created October 21, 2017 02:03 — forked from d2s/installing-node-with-nvm.md
Installing Node.js for Ubuntu with nvm

前端开发环境梳理

一个有意思的方式,有待尝试。前端+docker

斥巨资买了一台服务器,剩下的就是折腾了。

1. 配置git

2. 配置vim

3. 安装node环境

4. 安装nginx

  • 搭个博客
  • 试试docker。
  • docker实现slb
  • 前端组件化说明文档所在管理系统

创建项目 (前提vue-cli, cnpm)

  • 通过vue-cli生成项目
    • vue-router 路由
    • vuex 全局状态管理
  • 安装axios,进行ajax请求
  • 引入iview,UI组件
  • 可选Echarts,图表
    • node版
  • js库,官方最新版。

通过CDN引入, avalon.js

几个demo

  • table demo
  • form表单
  • 分页demo
  • select
// 安装 npm-check
cnpm i -g npm-check

// 检查版本,项目下的依赖
npm-check -u 

// 检查版本,全局依赖
npm-check -u -g

解决

首先确定目录是否一致。

目录一致时,将一下代码存成xxx.reg格式的文件,双击执行即可。

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\open in Git]
@="Git Bash Here"