在Vue中,以下哪个选项使用注册语法糖创建和注册组件
(A)Vue.component('my-comp',{template:'<h1>Vue</h1>'})
(B)Vue.component("my-comp",myComp)
(C)components:{"my-comp":myComp}
(D)以上选项都错误
参考答案
继续答题:下一题
(A)Vue.component('my-comp',{template:'<h1>Vue</h1>'})
(B)Vue.component("my-comp",myComp)
(C)components:{"my-comp":myComp}
(D)以上选项都错误