https://github.com/kouts/vue-starter-template
A single page app starter template created to easily bootstrap Vue.js 2 apps
https://github.com/kouts/vue-starter-template
scaffold-template scaffolding starter-template template vue vuejs2
Last synced: about 2 months ago
JSON representation
A single page app starter template created to easily bootstrap Vue.js 2 apps
- Host: GitHub
- URL: https://github.com/kouts/vue-starter-template
- Owner: kouts
- License: mit
- Created: 2020-07-12T18:25:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-04T11:16:08.000Z (almost 2 years ago)
- Last Synced: 2025-03-08T21:03:50.120Z (3 months ago)
- Topics: scaffold-template, scaffolding, starter-template, template, vue, vuejs2
- Language: JavaScript
- Homepage:
- Size: 2.19 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# vue-starter-template
A single page app starter template created to easily bootstrap Vue.js 2 apps.
**Features**
- Vuex 3 for state management
- Vue Router 3 for client-side routing
- Bootstrap 4.6 for layout and styling
- SCSS variables inside Vue components
- Purgecss for eliminating unused CSS
- Basic multiple layouts feature
- [ESLint config](https://github.com/kouts/eslint-config) based on
[eslint-config-standard](https://github.com/standard/eslint-config-standard)
and `eslint:recommended` with sensible defaults :relaxed:
- [Prettier](https://prettier.io/) for code formatting
- Automated release workflow with [semantic-release](https://github.com/semantic-release/semantic-release)
- IE11 compatible## Project setup
```
npm install
```### Compiles and hot-reloads for development
```
npm run serve
```### Compiles and minifies for production
```
npm run build
```## Run your unit tests
```
npm run test:unit
```### Lints and fixes files
```
npm run lint-fix
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).