This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- this makes sure we're in runes-only mode --> | |
<!-- don't enable immutable! it won't work since we're mutating the object directly --> | |
<svelte:options runes /> | |
<script> | |
import { store, increment } from './reactive.js'; | |
const deep = store.deep; | |
function push() { |