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

13 lines
312 B

export default {
props: {
columns: [ 'a', 'b', 'c' ],
rows: [ 1, 2, 3 ]
},
8 years ago
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><!----><!---->`,
test({ assert, component, target }) {
// TODO
}
};