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

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

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
```