You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/stats/samples/props/input.html

23 lines
287 B

<h1>Hello {name}!</h1>
<ul>
{#each cats as cat}
<li><a target="_blank" href={cat.video}>{cat.name}</a></li>
{/each}
</ul>
<p>bar: {bar}</p>
<script>
export default {
data() {
return {
name: 'world'
};
},
computed: {
bar: ({ foo }) => foo * 2
}
};
</script>