mirror of https://github.com/sveltejs/svelte
parent
0ef8229077
commit
132901bbe7
@ -0,0 +1 @@
|
||||
<div>{{value}}</div>
|
@ -0,0 +1,4 @@
|
||||
export default {
|
||||
data: { foo: 'foo' },
|
||||
html: `<div>foo @ foo # foo</div>`,
|
||||
};
|
@ -0,0 +1,6 @@
|
||||
<Widget value='foo @ {{foo}} # foo'/>
|
||||
|
||||
<script>
|
||||
import Widget from './Widget.html';
|
||||
export default { components: { Widget } };
|
||||
</script>
|
Loading…
Reference in new issue