Add Skeleton for GridItem and Image + Refactor components architecture with more modularity + Delete Fruit feature

This commit is contained in:
2020-12-07 12:48:06 +01:00
parent 5d34725344
commit 5ef8c424fd
19 changed files with 435 additions and 249 deletions

View File

@@ -0,0 +1,23 @@
<template>
<VueContentLoading
:style="{ backgroundColor: '#ffffff', padding: '1rem', borderRadius: '10px' }"
primary="#cecece"
:width="300"
:height="180"
>
<rect x="0" y="0" rx="4" ry="4" width="300" height="180" />
</VueContentLoading>
</template>
<script>
import VueContentLoading from "vue-content-loading";
export default {
name: "ImageSkeleton",
components: {
VueContentLoading
}
};
</script>
<style lang="less"></style>