Skip to content

Commit b26ee1c

Browse files
committed
tweak test
1 parent cce3a30 commit b26ee1c

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
<p>{(items || []).length} items</p>
2-
<p>{(items || []).join(', ')}</p>
3-
<p>{JSON.stringify(items)}</p>
1+
<p>{items.length} items</p>
2+
<p>{items.join(', ')}</p>
43

54
<script>
65
export default {
7-
tag: 'my-widget'
6+
tag: 'my-widget',
7+
8+
data() {
9+
return {
10+
items: []
11+
};
12+
}
813
};
914
</script>

0 commit comments

Comments
 (0)