Extend a component to create cool stuff
· ☕ 2 min read
Vue enables you to extend a component, thereby carrying forward all the base elements and add some more. This is one of the efficient ways for component composition.
Let’s say you have a simple panel that you use everywhere -
1 2 3 4 5 <!-- MainPanel.vue --> <template> <!