This commit is contained in:
kandrusyak
2022-12-06 14:34:09 +03:00
parent ff1a47a20b
commit a7b9c81e06
3 changed files with 44 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
<template lang="pug">
img(:src="img", :height="height", :width="width")
</template>
<script>
import LoaderGif from "@/assets/images/loader.gif";
export default {
name: "BaseLoader",
props: {
width: {
type: Number,
default: 64,
},
height: {
type: Number,
default: 64,
},
},
data() {
return {
img: LoaderGif,
};
},
};
</script>
<style scoped></style>