https://github.com/waitingwittykitty/vue3-starter
A customized vue3 boilerplate
https://github.com/waitingwittykitty/vue3-starter
Last synced: about 1 month ago
JSON representation
A customized vue3 boilerplate
- Host: GitHub
- URL: https://github.com/waitingwittykitty/vue3-starter
- Owner: waitingwittykitty
- License: mit
- Created: 2022-08-17T02:23:37.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-17T02:26:33.000Z (almost 3 years ago)
- Last Synced: 2025-02-13T07:16:31.571Z (3 months ago)
- Language: JavaScript
- Size: 1.45 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue3 Starter
A Vue 3 Starter Boilerplate with Vue Router 4, Pinia 2, Typescript 4, Webpack 5, Prettier and More.
**And not using the Vue CLI.**
## Architecture
```text
├─ public // static assets.
├─ service // commands and webpack configurations.
├─ src
│ ├─ assets // assets such as images or font files.
│ ├─ components // universal Vue components.
│ ├─ router // view's routers config.
│ ├─ stores // Pinia stores.
│ ├─ typings // typescript .d.ts files.
│ └─ views // pages.
```## Commands
```bash
# Start development server.
yarn dev# Compile production bundle.
yarn build
```