Skip to content

mrabit/vue-express

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vue + Express 构建项目

用法

  1. 安装依赖包

    npm install

  2. 运行开发环境

    npm run dev

  3. build前端代码

    npm run build

  4. 运行生产环境

    npm start

文件目录

.
├── README.md
├── nodemon.json
├── package.json
├── .gitignore
├── .babelrc
├── index.js
├── index.html
├── static
├── src
│   ├── client
│   │   ├── App.vue
│   │   ├── assets
│   │   │   └── logo.png
│   │   ├── router
│   │   │   └── index.js
│   │   ├── components
│   │   │   ├── notFound.vue
│   │   │   └── Hello.vue
│   │   └── main.js
│   └── server
│       ├── bin
│       │   └── www
│       ├── index.js
│       ├── router.js
│       ├── public
│       │   └── assets
│       │       │── stylesheets
│       │       └── javascripts
│       └── views
│           ├── index.ejs
│           ├── index_dev.ejs
│           ├── 404.ejs
│           └── error.ejs
├── build
│   ├── build.js
│   ├── clicheck-version.js
│   ├── dev-client.js
│   ├── utils.js
│   ├── vue-loader.conf.js
│   ├── webpack.base.conf.js
│   ├── webpack.dev.conf.js
│   └── webpack.prod.conf.js
├── config
│   ├── dev.env.js
│   ├── index.js
│   └── prod.env.js

参考地址

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published