pull/1636/head
Rich Harris 6 years ago
parent cce3a30ef2
commit b26ee1c3bb

@ -1,9 +1,14 @@
<p>{(items || []).length} items</p> <p>{items.length} items</p>
<p>{(items || []).join(', ')}</p> <p>{items.join(', ')}</p>
<p>{JSON.stringify(items)}</p>
<script> <script>
export default { export default {
tag: 'my-widget' tag: 'my-widget',
data() {
return {
items: []
};
}
}; };
</script> </script>
Loading…
Cancel
Save