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

https://github.com/jamie-yang/vue3-boilerplate

A Vue 3 Starter Boilerplate with Webpack 5, Vue Router 4, Pinia 2, TypeScript 5, Prettier and More.
https://github.com/jamie-yang/vue3-boilerplate

boilerplate-template eject starter-template typescript vue3 vue3-project webpack5 without-vue-cli

Last synced: 5 months ago
JSON representation

A Vue 3 Starter Boilerplate with Webpack 5, Vue Router 4, Pinia 2, TypeScript 5, Prettier and More.

Awesome Lists containing this project

README

          

# vue3-boilerplate

A Vue 3 Starter Boilerplate with Vue Router 4, Pinia 2, Typescript 5, 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
```