mirror of https://github.com/sveltejs/svelte
9 lines
131 B
9 lines
131 B
8 years ago
|
export default {
|
||
|
html: `
|
||
|
<ul><li>foo</li><li>bar</li><li>baz</li></ul>
|
||
|
`,
|
||
|
|
||
|
data: {
|
||
|
components: [ 'foo', 'bar', 'baz' ]
|
||
|
}
|
||
|
};
|