An open API service indexing awesome lists of open source software.

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

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/).