export default { props: { columns: [ 'a', 'b', 'c' ], rows: [ 1, 2, 3 ] }, html: '
a, 1
a, 2
a, 3
b, 1
b, 2
b, 3
c, 1
c, 2
c, 3
', test({ assert, component, target }) { // TODO } };