diff options
author | zeroinformatique | 2021-07-03 00:48:53 +0200 |
---|---|---|
committer | GitHub | 2021-07-03 00:48:53 +0200 |
commit | b6605e2c4ee73ac8b994624098344db5e44ac07d (patch) | |
tree | 5ed06cc5ecdabe070f6fdb9bc4f9a8a3b435cbe6 /viewer/src/components/LdThumbnail.vue | |
parent | 08ac32103fb5f8cca1861267dfd07a7c0d2faf62 (diff) | |
parent | 1f0377c1b4c2959c73fe4e368673f057ef369917 (diff) | |
download | ldgallery-b6605e2c4ee73ac8b994624098344db5e44ac07d.tar.gz |
Merge pull request #302 from ldgallery/oz-types-normalization
viewer: types normalization
Diffstat (limited to 'viewer/src/components/LdThumbnail.vue')
-rw-r--r-- | viewer/src/components/LdThumbnail.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/viewer/src/components/LdThumbnail.vue b/viewer/src/components/LdThumbnail.vue index 5b1bc82..3f67a43 100644 --- a/viewer/src/components/LdThumbnail.vue +++ b/viewer/src/components/LdThumbnail.vue | |||
@@ -37,12 +37,13 @@ | |||
37 | </template> | 37 | </template> |
38 | 38 | ||
39 | <script lang="ts"> | 39 | <script lang="ts"> |
40 | import { Component, Vue, Prop } from "vue-property-decorator"; | 40 | import { Item } from "@/@types/gallery"; |
41 | import Navigation from "@/services/navigation"; | 41 | import Navigation from "@/services/navigation"; |
42 | import { Component, Prop, Vue } from "vue-property-decorator"; | ||
42 | 43 | ||
43 | @Component | 44 | @Component |
44 | export default class LdThumbnail extends Vue { | 45 | export default class LdThumbnail extends Vue { |
45 | @Prop({ required: true }) readonly item!: Gallery.Item; | 46 | @Prop({ required: true }) readonly item!: Item; |
46 | 47 | ||
47 | loading: boolean = false; | 48 | loading: boolean = false; |
48 | 49 | ||