Modern Vue
Modern Vue stack 2022 with Micro front end & Monorepo ๐.
Joyful development experience ๐.
The main
branch will keep clean for quickly creating Vue3 web app.
Monorepo architecture please visit branch monorepo.
Lang
Features
-
โก๏ธ Build Optimization with compress
-
โก๏ธ CDN by Uploading static files to OSS
-
๐ฆพ Environmental distinction
-
๐ฆพ Monorepo by Rush
-
๐จ Commitlint
-
๐จ Formatting with prettier
-
๐ File based routing
-
๐ฆ Components auto importing
-
๐ Layout system
-
๐ฒ PWA
-
๐จ TailwindCSS - A utility-first CSS framework for rapid UI development.
-
๐ I18n ready
-
๐ Markdown Support
-
๐ฅ Use the new
<script setup>
syntax -
๐จ Server-side generation (SSG) via vite-ssg
-
๐ฆ Critical CSS via critters
-
๐ฆพ TypeScript, of course
-
โ๏ธ Unit Testing with Vitest, E2E Testing with Cypress on GitHub Actions
-
โ๏ธ Deploy on Netlify, zero-config
-
๐ฆ Extend Script Setup Component Name to co-operate with Vue Devtools
example:
<template>
<div class="app">
<RouterView />
</div>
</template>
<script setup lang="ts" name="App"></script>
We have removed two features
APIs auto import
andWindiCSS
since 2022.02.24. For the reason:
TailwindCSS V3
is fast enough nowAPIs auto import
might be overwhelming in some scenarios when your projects got large
Type Imports
// types.ts
export interface User {
username: string
password: string
avatar?: string
}
<script setup lang="ts">
import type { User } from '~/types'
defineProps<User>()
</script>
<template>...</template>
Pre-packed
UI Frameworks
- TailwindCSS - lighter and faster, with a bunch of additional features!
Icons
- Iconify - use icons from any icon sets ๐Icรดnes
unplugin-icons
- icons as Vue components
Plugins
- Vue Router
vite-plugin-pages
- file system based routingvite-plugin-vue-layouts
- layouts for pages
- Pinia - Intuitive, type safe, light and flexible Store for Vue using the composition api
unplugin-vue-components
- components auto importvite-plugin-pwa
- PWAvite-plugin-md
- Markdown as components / components in Markdownmarkdown-it-prism
- Prism for syntax highlightingprism-theme-vars
- customizable Prism.js theme using CSS variables
- Vue I18n - Internationalization
vite-plugin-vue-i18n
- Vite plugin for Vue I18n
- VueUse - collection of useful composition APIs
@vueuse/head
- manipulate document head reactively
Coding Style
- Use Composition API with
<script setup>
SFC syntax - ESLint with @antfu/eslint-config, single quotes, no semi.
Dev tools
- TypeScript
- Vitest - Unit testing powered by Vite
- Cypress - E2E testing
- pnpm - fast, disk space efficient package manager
vite-ssg
- Server-side generation- critters - Critical CSS
- Netlify - zero-config deployment
- VS Code Extensions
- Vite - Fire up Vite server automatically
- Volar - Vue
3
<script setup>
IDE support - Iconify IntelliSense - Icon inline display and autocomplete
- i18n Ally - All in one i18n support
- ESLint
Try it now!
Requires Node >=14
GitHub Template
Create a repo from this template on GitHub.
Clone to local
If you prefer to do it manually with the cleaner git history
Usage
Development
pnpm i
pnpm dev
Build
To build the App, run
pnpm build
With Env:
pnpm build:test
And you will see the generated file in dist
that ready to be served.
Thanks
Final
enjoy :)