<p>{items.length} items</p>
<p>{items.join(', ')}</p>
<script>
export default {
tag: 'my-widget',
data() {
return {
items: []
};
}
</script>