mirror of https://github.com/sveltejs/svelte
parent
2691e19b6b
commit
d5839ef194
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: head duplication when binding is present
|
@ -0,0 +1,3 @@
|
||||
<script>
|
||||
export let bar = null
|
||||
</script>
|
@ -0,0 +1,2 @@
|
||||
<link rel="canonical" href="/test">
|
||||
<meta name="description" content="test">
|
@ -0,0 +1,11 @@
|
||||
<script>
|
||||
import Foo from './Foo.svelte';
|
||||
let bar;
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<link rel="canonical" href="/test" />
|
||||
<meta name="description" content="test" />
|
||||
</svelte:head>
|
||||
|
||||
<Foo bind:bar />
|
Loading…
Reference in new issue