It seems that all vue-typescript component is global register. call vue.component()?
I want to know, how to create a local register component?
var Parent = Vue.extend({
template: '...',
components: {
// will only be available in Parent's template
'my-component': Child
}
})