pull/5447/head
Conduitry 5 years ago
parent 7a6bcd5ced
commit ada77a110c

@ -4,7 +4,7 @@ let value = 'foo';
export default {
props: {
value() {
count ++;
count++;
return value;
}
},

@ -3,6 +3,6 @@
export let value;
</script>
{#each ["foo", "bar"] as key (id + key)}
{#each ['foo', 'bar'] as key (id + key)}
<div>{value()}</div>
{/each}
Loading…
Cancel
Save