注意components與component的區別,跟配置無關
1.可以作用到Vue.component 這個全局注冊方法里, 也可以在任意vue模板里使用<apple>組件
var apple = Vue.extend({
....
})
Vue.component('apple',apple)
2.可以作用到vue實例或者某個組件中的components屬性中並在內部使用apple組件
new Vue({
components:{
apple:apple
}
})

