mirror of https://github.com/sveltejs/svelte
update #1844 test for v3
parent
76989eb220
commit
a3ab409be5
@ -1,3 +0,0 @@
|
|||||||
<p bind:clientHeight>
|
|
||||||
<slot/>
|
|
||||||
</p>
|
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
let clientHeight;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<p bind:clientHeight>
|
||||||
|
<slot/>
|
||||||
|
</p>
|
@ -1,13 +0,0 @@
|
|||||||
<Nested ref:nested>
|
|
||||||
Hello
|
|
||||||
</Nested>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Nested from './Nested.html';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
Nested
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
import Nested from './Nested.svelte';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Nested>
|
||||||
|
Hello
|
||||||
|
</Nested>
|
Loading…
Reference in new issue