You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{#each items as item}}
{{#await item.data}}
<p>{{item.title}}: Loading...</p>
{{then result}}
<p>{{item.title}}: {{result}}</p>
{{/await}}
{{/each}}
<script>exportdefault{data(){return{items: [{title: 'Some data',data: Promise.resolve('this will never show up'),},{title: 'Some other data',data: Promise.resolve('this will never show up'),}]}}}</script>
> TypeError: Cannot read property 'title' of undefined
REPL
The text was updated successfully, but these errors were encountered: