这几天我看vue doc,学习组件。
但是有一件事让我很困惑
医生说有一些方法可以注册一个组件
全球注册
Vue.component('my-component', {
// options
})
本地注册
var Child = {
template: '<div>A custom component!</div>'
}
new Vue({
// ...
components: {
// <my-component> will only be available in parent's template
'my-component': Child
}
})
这些注册已经定义了组件的名称(命名为'my-component'),这很酷
但是当我参考一些 vue + webpack 项目时,我发现他们喜欢使用下面的方式来注册组件
索引.html
<!--index.html-->
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test-vue</title>
</head>
<body>
<div id="root"></div>
<script src="./bundle.js"></script>
</body>
</html>
应用程序.js
// app.js
import Vue from 'vue'
import VueRouter from 'vue-router'
import VueResource from 'vue-resource'
import App from './App.vue'
Vue.use(VueRouter);
Vue.use(VueResource);
new Vue({
el: '#root',
render: (h) => h(App)
});
应用程序.vue
<!--App.vue-->
<template>
<div id="app">
<div>Hello Vue</div>
</div>
</template>
<script>
export default {
}
</script>
似乎组件没有描述它的名称,为什么组件仍然可以工作?
请帮忙。