https://github.com/lpreterite/vue-cli-multi-page-example
multi page example in vue-cli3
https://github.com/lpreterite/vue-cli-multi-page-example
Last synced: 3 months ago
JSON representation
multi page example in vue-cli3
- Host: GitHub
- URL: https://github.com/lpreterite/vue-cli-multi-page-example
- Owner: lpreterite
- Created: 2018-12-14T09:25:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-14T09:28:53.000Z (over 6 years ago)
- Last Synced: 2025-01-13T10:11:29.109Z (4 months ago)
- Language: JavaScript
- Size: 73.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# multi-app
## Project setup
```
npm install
```### Compiles and hot-reloads for development
```
npm run serve
```#### See pages
The default pages setting
```
{
pages:{
"home": "src/pages/home.js",
"login": "src/pages/login.js",
"register": "src/pages/register.js",
}
}
```page urls
```
- http://localhost:8081/home.html
- http://localhost:8081/login.html
- http://localhost:8081/register.html
```### Compiles and minifies for production
```
npm run build
```### Run your tests
```
npm run test
```### Lints and fixes files
```
npm run lint
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).