脚手架说明

基于vue.js的webapp脚手架, 默认安装vue,vue-route,vue-resource,jquery

环境要求

  • Mac OS X, Windows, or Linux
  • Node.js v4.0 or newer
  • npm v2.15 or newer (new to npm?)
  • node-gyp prerequisites mentioned here

目录结构

开始之前,请先预览一下项目的目录结构

.
├── README.md
├── dist // 项目build目录
├── index.html // 项目入口文件
├── package.json // 项目配置文件
├── ui // 网页重构目录
├── src // 生产目录
│   ├── assets // 重构输出的css和图片资源
│   ├── components // 组件
│   ├── views // 页面
│   ├── libs // 第三方类库
│   ├── filters.js // 过滤器
│   └── main.js // Webpack 预编译入口
├── server.js // webpack-dev-server服务配置
└── webpack.config.js // Webpack 配置文件

快速开始

1. 获取最新版本

git.oa.com上下载最新版本的 Vue Starter Kit (VSK)

$ git clone -o vue-starter-kit -b master --single-branch \
http://git.code.oa.com/leojian/vue-starter-kit.git MyApp
$ cd MyApp

2. 安装本地服务第三方依赖模块(需要已安装Node.js)

npm install

3.启动服务(http://localhost:8090)

node run server

4.发布代码

npm run build