8000 GitHub - comeontom/vue-multiple-pages: Vue2.0多页应用。Using Vue2.0 + ElementUI + Webpack2
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

comeontom/vue-multiple-pages

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

element-starter

A starter kit for Element UI generated by vue-cli

Start

  • Clone or download this repository
  • Enter your local directory, and install dependencies:
npm install

Develop

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

http://localhost:8080/user/login.html

http://localhost:8080/user/index.html

Build

# build for production with minification
npm run build
node server.js

http://localhost:2333/user/login.html

文件目录

├── app             # 主目录
│    ├── assets     # 资源目录
│    │    ├── css   # css
│    │    └── img   # 图片目录
│    ├── components # 自定义组件目录
│    └── pages      # 页面目录
│         └── user  # 业务模块目录
│              ├── index  # index 页面
│              │    ├── app.js    # 入口js
│              │    ├── app.html  # html模板
│              │    └── app.vue   # index 页面组件
│              └── login  # login 页面
│                   ├── app.js    # 入口js
│                   ├── app.html  # html模板
│                   └── app.vue   # login 页面组件
├── dist            # npm run build生成的目录
├── node_modules    # dependencies
├── .babelrc        # babel文件
├── server.js       # 用于查看npm run build的server.js,端口2333
├── webpack.config.js # webpack配置目录
├── node_modules    # dependencies
└── package.json    # package info

About

Vue2.0多页应用。Using Vue2.0 + ElementUI + Webpack2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 69.4%
  • Vue 21.2%
  • HTML 9.4%
0