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-arg-clash/_config.js

20 lines
273 B

export default {
props: {
things: {
foo: ['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]
};
}
};