工具公众号页面

likang e51a97ea18 likang 1 年間 前
build e51a97ea18 likang 1 年間 前
config bc29a03cff likang 2 年 前
src e51a97ea18 likang 1 年間 前
static 7e60a5d0f5 first commit 2 年 前
test 7e60a5d0f5 first commit 2 年 前
.babelrc 7e60a5d0f5 first commit 2 年 前
.babelrc copy 7e60a5d0f5 first commit 2 年 前
.editorconfig 7e60a5d0f5 first commit 2 年 前
.eslintignore 7e60a5d0f5 first commit 2 年 前
.eslintrc.js 7e60a5d0f5 first commit 2 年 前
.gitignore 7e60a5d0f5 first commit 2 年 前
.postcssrc.js 7e60a5d0f5 first commit 2 年 前
README.md 7e60a5d0f5 first commit 2 年 前
favicon_school.ico 7e60a5d0f5 first commit 2 年 前
index.html e51a97ea18 likang 1 年間 前
package-lock.json fa0b60ebf7 wch edit 2 年 前
package.json 7e60a5d0f5 first commit 2 年 前

README.md

smart-card-wxweb

A Vue.js project

Build Setup

# 注意nodejs版本,已验证版本:v10.13.0,安装流程参考:https://www.cnblogs.com/lvchengda/p/12613440.html
	# 下载
    wget https://nodejs.org/dist/v10.13.0/node-v10.13.0-linux-x64.tar.xz
    
    # 解压
    xz -d node-v10.13.0-linux-x64.tar.xz
    tar -xvf node-v10.13.0-linux-x64.tar.xz
    
    # 进入目录
    cd node-v10.13.0-linux-x64/
    
    # 创建软连接
    ln -s /opt/nodejs/node-v10.13.0-linux-x64/bin/node /usr/local/bin/node
    ln -s /opt/nodejs/node-v10.13.0-linux-x64/bin/npm /usr/local/bin/npm
    
    # 测试
    node -v
    npm -v
    
    # 配置taobao镜像
    npm config set registry https://registry.npm.taobao.org
	
# install dependencies
npm install
# linux系统,安装时,需要加一下参数,否则安装会报错(详情参考:https://blog.csdn.net/weixin_33693070/article/details/91367089)
npm install --unsafe-perm

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

# run unit tests
npm run unit

# run all tests
npm test

For a detailed explanation on how things work, check out the guide and docs for vue-loader.