题目3单选题
下列代码中横线处应该使用( )来引用组件myComponent. <div id="app"> </div> <script> Vue.component('myComponent', { data () { return { count: 0 } }, template: '<button v-on:click="count++">被单击{{count}}次</button>' }) var vm = new Vue({ el: '#app' , }) </script>A. <mycomponent></mycomponent>B. <my-component></my-component>C. <myComponent></myComponent>D. <MyComponent></MyComponent>