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
{{ message }}
This repository was archived by the owner on May 3, 2018. It is now read-only.
Q1: Vue.extend create a component construct of Vue, override it by pass data or $el to params Vue.Component register a component
But
How to do component inherit other?is it necessary?
For Example:
TableGrid, TreeGrid inherit Grid
Q2:
a component from vue.extend. register it by Vue.Component('my-component', Vue.extend({}))
how to use this in Father Compoent?
varFather=newVue({//...components: {//how put it here?}//...})