Closed
Description
When compiling the example followed, the console will print the error Error when evaluating the "item.value"
, which is raised by the slot
directive called in the content linker in _compile
function (src/instance/lifecycle
).
<comp v-for="item in items">
{{item.value}}
</comp>
<template id="comp">
<div>
<slot></slot>
</div>
</template>