mirror of https://github.com/sveltejs/svelte
parent
da11d75558
commit
687e352209
@ -1,5 +0,0 @@
|
||||
<script>
|
||||
import Widget from './Widget.html';
|
||||
</script>
|
||||
|
||||
<Widget/>
|
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Widget from './Widget.svelte';
|
||||
</script>
|
||||
|
||||
<Widget/>
|
@ -1,5 +0,0 @@
|
||||
<script>
|
||||
import Widget from './widget/Widget.html';
|
||||
</script>
|
||||
|
||||
<Widget/>
|
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Widget from './widget/Widget.svelte';
|
||||
</script>
|
||||
|
||||
<Widget/>
|
@ -1,5 +0,0 @@
|
||||
<script>
|
||||
import Widget from './Widget.html';
|
||||
</script>
|
||||
|
||||
<Widget/>
|
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import Widget from './Widget.svelte';
|
||||
</script>
|
||||
|
||||
<Widget/>
|
@ -1,7 +1,7 @@
|
||||
<svelte:options tag="my-app"/>
|
||||
|
||||
<script>
|
||||
import Counter from './Counter.html';
|
||||
import Counter from './Counter.svelte';
|
||||
|
||||
export let count;
|
||||
</script>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue