Answer the question
In order to leave comments, you need to log in
How to take only used components into the project?
There is a project that uses bootstrapvue components (3-5 pcs), is it possible somehow during assembly or is there a way for a similar framework or bulma, element.io, etc., when using them in a project, only pull out what components will we use?
Answer the question
In order to leave comments, you need to log in
Depending on how you connect these components. The assembler includes what you include.
If you globally connect all components at once, so as not to import them many times, ala
import Vue from 'vue'
import Vuetify from 'vuetify'
Vue.use(Vuetify)
import {VToolbar} from 'vuetify/lib'
export default defineComponent({
components: {VToolbar}
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question