-
FEATURED COMPONENTS
First time here? Check out the FAQ!
![]() | 1 | initial version | |
Is it possible to use a template with a
<n:ul children="@load(vm.items)"> <template name="children" var="each"> <n:li>${each></n:li> </template> </n:ul>
This does not work. But I want to do this exactly.
![]() | 2 | No.2 Revision |
Is it possible to use a template with a
<n:ul children="@load(vm.items)">
<template name="children" var="each">
<n:li>${each></n:li>
</template>
This does not work. But I want to do this exactly.
![]() | 3 | No.3 Revision |
Is it possible to use a template with a
<n:ul children="@load(vm.items)">
<template name="children" var="each">
<n:li>${each></n:li>
</template>
</n:ul>
This does not work. But I want to do this exactly.
![]() | 4 | No.4 Revision |
Is it possible to use a template with a <ul> html tag?
<n:ul children="@load(vm.items)">
<template name="children" var="each">
<n:li>${each></n:li>
<n:li>${each}</n:li>
</template>
</n:ul>
This does not work. But I want to do this exactly.