mirror of https://github.com/sveltejs/svelte
parent
1689f9633f
commit
ade3f5c833
@ -0,0 +1,4 @@
|
|||||||
|
export default {
|
||||||
|
skip_if_ssr: true,
|
||||||
|
html: `<div>object</div>`
|
||||||
|
};
|
@ -0,0 +1,6 @@
|
|||||||
|
<script>
|
||||||
|
import { writable } from 'svelte/store';
|
||||||
|
const foo = writable();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div bind:this={$foo}>{typeof $foo}</div>
|
Loading…
Reference in new issue