工具公众号页面

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

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.