Files
fruit-project/src/components/Form/ImageUnsplash/ImageSkeleton.vue

24 lines
465 B
Vue

<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>