vue单个文件组件 - 自我导入

时间:2017-07-11 12:01:04

标签: vue.js

是否有可能导入相同的SFC?我的意思是:

test.vue:

<template>
  <ul v-for="(item, index) in menuLevel">
    <li>
      {{item.name}}
      <test :data="item" v-if="item.children && item.children.length"></test>
    </li>
  </ul>
</template>

1 个答案:

答案 0 :(得分:3)

是的,您可以在Recursive Components下的文档中阅读相关内容。

您需要确保在组件选项对象中指定组件的name并且您已完成设置。