fix lazy css bug, add tests

This commit is contained in:
Rich Harris
2018-10-24 18:48:38 -04:00
parent ffd56e2a20
commit 410c52df41
12 changed files with 294 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
<svelte:component this={Title}/>
<script>
export default {
oncreate() {
import('./_components/Title.html').then(({ default: Title }) => {
this.set({ Title });
});
}
};
</script>