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/each-blocks-nested/_config.js

14 lines
299 B

export default {
get props() {
return {
columns: ['a', 'b', 'c'],
rows: [1, 2, 3]
};
},
html: '<div>a, 1</div><div>a, 2</div><div>a, 3</div><!----><div>b, 1</div><div>b, 2</div><div>b, 3</div><!----><div>c, 1</div><div>c, 2</div><div>c, 3</div><!----><!---->',
// TODO
test() {}
};