我正在学习vuejs,我无法理解为什么需要这个名字。
<template>
</template>
<script>
export default {
name: 'NotFound'
}
</script>
<style>
</style>
例如,您可以在此文件https://github.com/misterGF/CoPilot/blob/master/src/components/404.vue中看到上述代码的来源 这个名字什么也没做,但为什么我们需要它。
答案 0 :(得分:5)
组件可以在自己的模板中递归调用自己。但是,他们只能使用名称选项
这样做
https://vuejs.org/v2/guide/components.html#Recursive-Components