# Contributing

Vuetify is made possible by an amazing community that submits issues, creates pull requests, and provides invaluable feedback. It is our job to enable you to create amazing applications. A lot of the time, you come across something that can be made better. Maybe you find a bug, or you have an idea for additional functionality. That’s great! It’s as easy as cloning the Vuetify repository to get started working in a development environment.

# Reporting Issues

The issue list of this repo is exclusively for bug reports and feature requests. Non-conforming issues will be closed immediately. Before reporting an issue, ensure that:

  • Search for a similar issues, it may have been answered.
  • Try to reproduce with the latest version in a Codepen template or repository that can be be cloned to produced the expected behavior.
  • The reproduction is MINIMAL and concise

Issues that are convoluted and lacking a proper reproduction may be closed by a member of the Core Team. For additional questions regarding reporting issues and creating reproductions, join the official Vuetify Discord community.

In the next section you will learn—step-by-step—how to setup your local environment and how to configure Vuetify for development.

# Local development

The Vuetify repository is a lerna monorepo that connects the vuetify lib, docs, api generator, and reduces the friction of working with multiple projects at once. The following guide is designed to get you up and running in no time.

# Setting up your environment

If you are making a pull request, please fork the Vuetify repository before continuing; More information on forking repositories can be found in the GitHub documentation.

If you are new to the process of contributing to Open Source, it’s recommended that you clone using https. More information on which remote URL to use can be found on the GitHub documentation page.

# Example of cloning the Vuetify repository (non fork)

# Using HTTPS
git clone https://github.com/vuetifyjs/vuetify.git

# Using SSH
git clone git@github.com:vuetifyjs/vuetify.git

Once cloned, run the following commands:

# Navigate to the vuetify folder
cd vuetify

# Install all project dependencies
yarn

# Build the packages
yarn build

The build process compiles all of the Vuetify packages for development and may take awhile (grab some ☕). Once the packages are built, start your local development server by running yarn dev in the terminal.

# Starting your environment

There are a few ways to start the development environments in the Vuetify mono-repo.

# All commands run from root directory

# To start Vuetify dev
yarn dev

# To access your local vuetify playground: http://localhost:8080

# To start docs
yarn dev docs

# To access your local docs environment: http://localhost:8095

# To start a specific package
yarn dev <package name>

# To build all packages
yarn build

# To build a specific package
yarn build <package name>

# Package alias
api-generator: api

# Playground.vue

The Playground file is a cleanroom used for Vuetify development and is the recommended way to iterate on changes within the framework.

<template>
  <v-container>
    <!--  -->
  </v-container>
</template>

<script>
  export default {
    data: () => ({
      //
    }),
  }
</script>

The App.vue file used for Vuetify development is located in packages/vuetify/dev/. It contains a v-app and v-main component and the local Playground.vue file.

# Working with GitHub

Vuetify’s repository lives on [GitHub] and is the primary location for all development related information. In addition, we have a public Notion board with a detailed overview of our development process and status for Vuetify 3. These tools enables the Core Team to efficiently manage a large scale OSS project while also providing complete transparency of its progress with framework maintenance and development.

Some of the more notable links within these services include:

GitHub

Notion

The following sections are designed to familiarize you with our standard operating procedures for Vuetify development.

# Issue triage

With the size and popularity of Vuetify has come a constant influx of new issues, questions, and feature requests. To organize these requests the Core Team developed tools to aid not only the triaging of issues, but creating them as well.

The Issues board makes heavy use of the label system with some light automation; such as adding the triage label to new issues.

# Creating a pull request

# For Vuetify

# For Docs

# For Docs - Language

# Requesting new features

Vuetify uses the RFC (request for comments) process for new feature suggestions. It is intended to provide a consistent and controlled path for new features to enter the framework.

Many changes, including bug fixes and documentation improvements can be implemented and reviewed via the normal GitHub pull request workflow.

Some changes though are substantial, and we ask that these be put through a bit of a design process and produce a consensus among the Vuetify Core Team and the community.

# Getting started

In order to get a major feature added to Vuetify you must get your RFC merged into the this repository as a .md file. The following is a guide on how to get started:

  • Fork the Vuetify RFC repo http://github.com/vuetifyjs/rfcs

  • Copy 0000-template.md to active-rfcs/0000-my-feature.md (where my-feature is descriptive. do not assign an RFC number yet).

  • Fill in the RFC. Be detailed and put care into the details.

  • Submit a pull request. As a pull request the RFC will receive design feedback from the larger community, and the author should be prepared to revise it in response. New RFC pull requests start in the Pending stage.

  • Build consensus and integrate feedback. RFCs that have broad support are much more likely to make progress than those that don’t receive any comments.

  • Eventually, the Core Team will decide whether the RFC is a candidate for inclusion in Vuetify.

  • An RFC can be modified based upon feedback from the Core Team and community. Significant modifications may trigger a new final comment period.

  • An RFC may be rejected after public discussion has settled and comments have been made summarizing the rationale for rejection. A Core Team member will close the RFC’s associated pull request, at which point the RFC will enter the Rejected stage.

  • An RFC may be accepted at the close of its final comment period. A Core Team member will merge the RFC’s associated pull request, at which point the RFC will enter the Active stage.

Once an RFC is merged and the corresponding functionality implemented within the Vuetify repository, it will be part of the next major or minor release. Once released, the RFC will enter the Released stage and be locked.

For more information regarding RFC’s, navigate to the official repository: https://github.com/vuetifyjs/rfcs

# Commit guidelines

All commits are required to follow the conventional-changelog standard using the angular preset. This standard format consists of 2 types of commits:

  • With scope: <type>(scope): <subject>

    fix(VSelect): don't close when a detachable child is clicked
    
    fixes #12354
    
  • Without scope: <type>: <subject>

    docs: restructure nav components
    
    move duplicated functionality in drawer to reduce
    scope of responsibility
    
# General Rules
  • Commit messages must have a subject line and may have body copy. These must be separated by a blank line.

  • The subject line must not exceed 50 characters

  • The subject line must be written in imperative mood; (fix, not fixed / fixes etc.)

  • The body copy must include a reference all issues resolved:

    doc(sass-variables): fix broken link to api
    
    resolves #3219
    resolves #3254
    
  • The body copy must be wrapped at 72 columns

  • The body copy must only contain explanations as to what and why, never how. The latter belongs in documentation and implementation.

# Commit types

The following is a list of commit types used in the angular preset:

  • feat: Commits that result in a new features or functionalities. Backwards compatible features will release with the next MINOR whereas breaking changes will be in the next MAJOR. The body of a commit with breaking changes must begin with BREAKING CHANGE, followed by a description of how the API has changed.
  • fix: Commits that provide fixes for bugs within vuetify’s codebase.
  • docs: Commits that provide updates to the docs.
  • style: Commits that do not affect how the code runs, these are simply changes to formatting.
  • refactor: Commits that neither fixes a bug nor adds a feature.
  • perf: Commits that improve performance.
  • test: Commits that add missing or correct existing tests.
  • chore: Other commits that don’t modify src or test files.
  • revert: Commits that revert previous commits.

# Submitting Changes / Pull Requests

When submitting a pull request it is important that your local fork is synced with the latest changes in Vuetify. A pull request should be free of unnecessary commits and follow the conventional-changelog standards using the angular preset.