Answer the question
In order to leave comments, you need to log in
Component inside vue component?
I have a Main component. It has a Sidebar component. For each page, the contents of the Sidebar should be different, so I created separate components for each to place them on the right pages.
In the main component, I register them:
import MiddleBar from '@/components/Main/MiddleBar/MiddleBar'
import Streams from '@/components/Main/MiddleBar/Elements/Streams'
export default {
components: {
MiddleBar,
Streams
}
}
| <MiddleBar> <Streams></Streams> </MiddleBar>
Answer the question
In order to leave comments, you need to log in
you need to leave in the main component like this
import MiddleBar from '@/components/Main/MiddleBar/MiddleBar'
export default {
components: {
MiddleBar
}
}
import Streams from '@/components/Main/MiddleBar/Elements/Streams'
export default {
components: {
Streams
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question