输出:
<test-1>
<ul>
<test-1-item>
<li>Home</li>
</test-1-item>
<test-1-item>
<li>About</li>
</test-1-item>
</ul>
</test-1>
我想要的输出:
<test-1>
<ul>
<li>Home</li>
<li>About</li>
.
.
</ul>
</test-1>
问题:
获取test-1-item标签作为li的父母。
问题:
我知道,通过将其视为指令并将其传递给li标签可以清除问题,但我希望将其作为组件。有什么办法可以使用该组件来实现它?
项目不会作为数组传递,而是单独传递。
示例代码如下:
<test-1>
<test-1-item>Home</test-1-item>
<test-1-item>About</test-1-item>
<test-1-item>Contact</test-1-item>
</test-1>