mirror of https://github.com/sveltejs/svelte
parent
d3297e2a25
commit
309ffcbcbe
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: 'true'
|
||||||
|
};
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
<script>
|
||||||
|
import { readable } from 'svelte/store'
|
||||||
|
|
||||||
|
let store, nonStore;
|
||||||
|
|
||||||
|
const getExports = () => ({ nonStore: true, store: readable(true) });
|
||||||
|
|
||||||
|
({ nonStore, store } = getExports());
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if $store}
|
||||||
|
{nonStore}
|
||||||
|
{/if}
|
||||||
Loading…
Reference in new issue