Add component's lazy loading
This commit is contained in:
@@ -15,13 +15,12 @@
|
||||
<script>
|
||||
import { mapState } from "vuex";
|
||||
import GridItemSkeleton from "./GridItemSkeleton";
|
||||
import GridItem from "./GridItem";
|
||||
|
||||
export default {
|
||||
name: "Grid",
|
||||
components: {
|
||||
GridItemSkeleton,
|
||||
GridItem
|
||||
GridItem: () => import("./GridItem")
|
||||
},
|
||||
props: {
|
||||
data: Array
|
||||
|
||||
Reference in New Issue
Block a user