Skip to content

A Vue3 starter project setup with Vite, Vue-meta, Router, Vuex, Eslint, Prettier, Tailwind CSS, and some custom preferences.

Notifications You must be signed in to change notification settings

vuejsvn/vue-3-stackter

 
 

Repository files navigation

vue-3-stackter

Cover Image

A Vue3 starter project setup with

  • Vite
  • vue-meta-3.0.0-alpha.8
  • Router
  • Vuex
  • Eslint
  • Prettier
  • Tailwind CSS
  • and some custom preferences.

Run this project:

yarn
yarn dev

Change site name

In App.vue change the following,

const siteName = 'Vite App' // add your site name here

Layouts

You can add layouts in your project if you want. You will find a default.vue layout example in this project.

Pages

You can add pages to your project. You will find two example pages in the pages directory (Home.vue and About.vue). Do not forget to register the pages in the router. You will also find a router/index.js file to register your pages.

Meta info

You can add meta information in your pages. Here is an example,

<script setup>
import { useMeta } from 'vue-meta'

useMeta({
    title: 'Homepage',
})
...

</script>

About

A Vue3 starter project setup with Vite, Vue-meta, Router, Vuex, Eslint, Prettier, Tailwind CSS, and some custom preferences.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 51.7%
  • JavaScript 41.1%
  • HTML 6.1%
  • CSS 1.1%