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/flush-before-bindings/main.html

28 lines
421 B

<Nested bind:visibleThings="visibleThings" />
<script>
import Nested from './Nested.html';
export default {
data() {
return {
visibleThings: []
};
},
components: {
Nested
},
onstate({ current, changed, previous }) {
if (!this.snapshots) {
// first run
this.snapshots = [];
}
if (changed.visibleThings) {
this.snapshots.push(current.visibleThings);
}
}
};
</script>