Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
forked from vuetifyjs/nuxt

A Nuxt.js + Vuetify.js starter project template with a different organization to the usual one. This package will allow you to install several components from the initialization.

License

Notifications You must be signed in to change notification settings

philippe-desplats/vuetify-nuxt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Redek Project

NuxtJS template with Vuetify

A Nuxt.js + Vuetify.js starter project template with a different organization to the usual one. This package will allow you to install several components from the initialization.

🔨 Installation

This is a project template for vue-cli.

$ npm install -g vue-cli
$ vue init RedekProject/vuetify-nuxt my-project
$ cd my-project
$ npm install
$ npm run dev

Make sure to use a version of vue-cli >= 2.1 (Know the vue-cli version : vue -V).

🚀 Usage

Development

Command to develop your web application.

# Server with hot reloading at localhost:3000
$ npm run dev

Go to http://localhost:3000.

Production - No SPA

# Build for production and launch the server
$ npm run build
$ npm start

Generate - For SPA

# Generate a static project
$ npm run generate

Directory Structure

.
├── config
|   └── # Contains all nuxt configuration files.
├── rules
|   └── # Contains all rules islint configurable easily and quickly. (credit : @slynova/eslint-config).
├── src
|   ├── assets
|   |   ├── fonts # Default font installed to show how _fonts.scss works.
|   |   |   ├── Nunito
|   |   |   └── Roboto
|   |   ├── images
|   |   └── style
|   |       ├── css # If `SASS` is not installed.
|   |       ├── scss # If `SASS` is installed.
|   |       └── styl
|   ├── components
|   ├── layouts
|   ├── middleware
|   ├── pages # If `@nuxtjs/router` is not installed.
|   ├── plugins
|   ├── static
|   ├── store
|   ├── views # If `@nuxtjs/router` is installed.
|   └── router.js # If `@nuxtjs/router` is installed.
├── .editorconfig
├── .eslintignore
├── .eslintrc.js
├── .gitignore
├── nuxt.config.js
├── package.json
└── README.md

🔌 Components

📘 Documentations

👥 Author

Credit : Vuetify.js

📄 License

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

A Nuxt.js + Vuetify.js starter project template with a different organization to the usual one. This package will allow you to install several components from the initialization.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 69.9%
  • Vue 15.2%
  • HTML 10.1%
  • CSS 4.8%