You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows declaratively extending another component (could be either a plain options object or a constructor) without having to use `Vue.extend`. This is primarily intended to make it easier to extend between single file components.
924
+
925
+
This is similar to `mixins`, the difference being that the component's own options takes higher priority than the source component being extended.
926
+
927
+
-**Example:**
928
+
929
+
```js
930
+
var CompA = { ... }
931
+
932
+
// extend CompA without having to call Vue.extend on either
0 commit comments