mpvue 开发多端小程序 最新模板

charblus 337304e550 add book detail thumb && del server ls config.js tencent icloud related configuration пре 6 година
.vscode d6fe278e21 add template пре 6 година
build 5ddc721c13 login openid пре 6 година
config d6fe278e21 add template пре 6 година
server 337304e550 add book detail thumb && del server ls config.js tencent icloud related configuration пре 6 година
src 337304e550 add book detail thumb && del server ls config.js tencent icloud related configuration пре 6 година
static d6fe278e21 add template пре 6 година
.babelrc d6fe278e21 add template пре 6 година
.editorconfig d6fe278e21 add template пре 6 година
.eslintignore d6fe278e21 add template пре 6 година
.eslintrc.js d6fe278e21 add template пре 6 година
.gitignore d6fe278e21 add template пре 6 година
.postcssrc.js d6fe278e21 add template пре 6 година
README.md 337304e550 add book detail thumb && del server ls config.js tencent icloud related configuration пре 6 година
index.html d6fe278e21 add template пре 6 година
package-lock.json 8dae5c102e localhost mysql change in 5.7 version for mysql init success, local dev env selected пре 6 година
package.json 8dae5c102e localhost mysql change in 5.7 version for mysql init success, local dev env selected пре 6 година
package.swan.json d6fe278e21 add template пре 6 година
project.config.json d19dc440b8 close domain name validatioin and no use useQcloudLogin for tencent cloud proxy wx small codes пре 6 година
project.swan.json d6fe278e21 add template пре 6 година

README.md

my-mpvue

A Mpvue project

Build Setup

# 初始化项目
vue init mpvue/mpvue-quickstart myproject
cd myproject

# 安装依赖
yarn

# 开发时构建
npm dev

# 打包构建
npm build

# 指定平台的开发时构建(微信、百度、头条、支付宝)
npm dev:wx
npm dev:swan
npm dev:tt
npm dev:my

# 指定平台的打包构建
npm build:wx
npm build:swan
npm build:tt
npm build:my

# 生成 bundle 分析报告
npm run build --report

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

server

使用koa开发

cd server
npm run dev

server目录下config中需要填写小程序配置信息Appid & App Secret 等(注: 项目放github上App Secret明文显示 会收到腾讯云短信提醒该泄露,安全隐患)

mysql语句

Mysql 基本语法

create database 数据库名; 创建数据库 show tables; 查看数据库所有表 desc 表名; 查看数据表 alter table books add column count int default 0; 在books表中添加count int类型 默认0; select title, count from books; 查看books表部分数据 show create table books; 查看创建books用了哪些语句