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/runtime/samples/dev-accept-declarative-store/main.html

15 lines
244 B

<script>
import { Store } from '../../../../store.js';
const store = new Store({ foo : "foo" });
/*
svelte-upgrade cannot automatically transform this code —
it must be updated manually
store : () => store
*/
</script>
<p>{$foo}</p>