When should I extend a component and when should I use mixin in Vue. Both bring all data and methods to the actual component.
I will suggest you to choose mixins reason because mixins are being used to add small chunks of functionality to a component while extend for a fully component to create a new component with additional or changed options.