Skip to content

Latest commit

 

History

History
92 lines (74 loc) · 3.14 KB

README.md

File metadata and controls

92 lines (74 loc) · 3.14 KB

vue-cli-preset-vuetify

A Vue CLI 3 Preset for generating scaffolded Vuetify applications

💿 Install

vue create my-project --preset vuetifyjs/vue-cli-preset-vuetify

🚀 Usage

Default Component Structure

Adds base and core components.

  • base: Global components that are automatically loaded
  • core: Application level components

Vuetify

Plugins

Lighthouse

94/100/100 Desktop

92/100/100 Mobile


@mdi/js Icons

With @mdi/js you must import the corresponding icon that you plan to use (custom).

<template>
  <v-icon>{{ mdiHeart }}</v-icon>
</template>

<script>
  import { mdiHeart } from '@mdi/js'

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

💪 Supporting Vuetify

Vuetify is an open source MIT project that has been made possible due to the generous contributions by community backers. If you are interested in supporting this project, please consider:

📑 License

MIT

Copyright (c) 2016-present Vuetify LLC