mirror of https://github.com/sveltejs/svelte
parent
8e96699044
commit
48ce1c9054
@ -0,0 +1 @@
|
|||||||
|
<p>x: {{x}} ({{typeof x}})</p>
|
@ -0,0 +1,3 @@
|
|||||||
|
export default {
|
||||||
|
html: `<p>x: true (boolean)</p>`
|
||||||
|
};
|
@ -0,0 +1,9 @@
|
|||||||
|
<Foo x/>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Foo from './Foo.html';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: { Foo }
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in new issue