# File Structure
Within the download you'll find the following directory and file structure:
Vue/
├── README.md
├── src/
│ ├── actions/
│ ├── assets/
│ │ ├── css/
│ │ └── images/
│ ├── components/
│ ├── config/
│ ├── data/
│ ├── layouts/
│ ├── partials/
│ ├── router/
│ ├── stores/
│ ├── utilities/
│ ├── views/
│ ├── App.vue
│ ├── config.js
│ ├── main.js
│ └── ...
├── index.html
├── package.json
├── postcss.config.js
├── tailwind.config.js
├── vite.js
└── ...
# Installation
# Prerequisites
Please install following prerequisites before setup:
# Setup
Download the package. On Vue
directory:
yarn
This will install all the node packages.
# Builds
You can run the following commands to build for development or production use.
# Development
yarn dev
# Production
yarn build