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/hydration/samples/each-block/_config.js

18 lines
259 B

export default {
props: {
things: ['animal', 'vegetable', 'mineral']
},
snapshot(target) {
const ul = target.querySelector('ul');
const lis = ul.querySelectorAll('li');
return {
ul,
lis0: lis[0],
lis1: lis[1],
lis2: lis[2]
};
}
};