在Vue中,以下哪个选项表示组件局部注册
(A)Vue.component("my-comp",myComp)
(B)components:{"my-comp":myComp}
(C)var myComp=Vue.extend({template:"<h1>Vue</h1>"})
(D)Vue.component('my-comp',{template:'<h1>Vue</h1>'})
参考答案
继续答题:下一题
(A)Vue.component("my-comp",myComp)
(B)components:{"my-comp":myComp}
(C)var myComp=Vue.extend({template:"<h1>Vue</h1>"})
(D)Vue.component('my-comp',{template:'<h1>Vue</h1>'})