[Vuejs]-How to properly build a Vue component library using Vuetify

0👍

You have to import the Vuetify components and add them to the components section of your own components.

For example:

<script>
import VFileInput from 'vuetify/something'

export default {
  name: 'FormParser',
  components: {
    VFileInput
  }
}
</script>

Leave a comment