Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mitevpi/vue-template
Vue.js 3.0 starter template & examples using the traditional API.
https://github.com/mitevpi/vue-template
frontend template vue vuejs web
Last synced: about 17 hours ago
JSON representation
Vue.js 3.0 starter template & examples using the traditional API.
- Host: GitHub
- URL: https://github.com/mitevpi/vue-template
- Owner: mitevpi
- Created: 2019-11-14T15:34:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T14:26:20.000Z (over 3 years ago)
- Last Synced: 2023-03-02T22:16:37.484Z (over 1 year ago)
- Topics: frontend, template, vue, vuejs, web
- Language: Vue
- Size: 1.86 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue Starter Template
A Vue.js 3.0 full project starter template including best practices for code styling, testing, and building. Also incorporates the (soon to be released) [Composition API](https://vue-composition-api-rfc.netlify.com/).
## Usage
Fork, download, or clone this repository and use it as a starting point for your next Vue.js project.
## Added/Updated Configurations to Vue CLI Starter
1. [AirBnB Style Guide](https://github.com/airbnb/javascript)
2. [Prettier Style Guide](https://prettier.io/)
3. [Jest (Unit Testing)](https://jestjs.io/)
4. [ESLint (Style Enforcing)](https://eslint.org/)## Commands
The following commands are used to develop the project:
1. `npm run build` - Build the package distribution bundle.
2. `npm run serve` - Start a development server with live-reloading on changes. (Used for previewing individual components.)
3. `npm run lint` - Lint code using ESLint and Vue, AirBnB, and Prettier configs.
4. `npm run test:unit` - Run unit tests for the individual components in the package.