Skip to content

Instantly share code, notes, and snippets.

@AlbertMarashi
Created May 13, 2019 12:46
Show Gist options
  • Save AlbertMarashi/f825d90575fccd6d437b02061c725a91 to your computer and use it in GitHub Desktop.
Save AlbertMarashi/f825d90575fccd6d437b02061c725a91 to your computer and use it in GitHub Desktop.
Async Infinite Loop Bug
<template>
<div id="app">
<asyncComp/>
</div>
</template>
<script>
import asyncComp from "./asyncComp"
export default {
name: "app",
components: {
asyncComp
}
}
</script>
<script>
export default {
render(h) {
return h(() => import("./comp"));
}
};
</script>
<template>
<pre>Hello World</pre>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment