Components in Vue are like widgets. They allow us to write reusable custom elements with desired behavior.
They are nothing but objects which can contain any/all of the options that the root or any Vue instance can contain, including an HTML template to render.
Components consist of:
HTML marku...