diff options
author | Zero~Informatique | 2021-07-02 22:53:16 +0200 |
---|---|---|
committer | Zero~Informatique | 2021-07-03 00:05:22 +0200 |
commit | 9165cc1efcf7791f78b61b2c51a9de651b1b09aa (patch) | |
tree | 111cfdc74ddaf7b19ff27508f16ab84694b27670 /viewer/src/components/item_handlers/LdPlainTextViewer.vue | |
parent | 08ac32103fb5f8cca1861267dfd07a7c0d2faf62 (diff) | |
download | ldgallery-9165cc1efcf7791f78b61b2c51a9de651b1b09aa.tar.gz |
viewer: types normalization - gallery.d.ts
GitHub: closes #301
Diffstat (limited to 'viewer/src/components/item_handlers/LdPlainTextViewer.vue')
-rw-r--r-- | viewer/src/components/item_handlers/LdPlainTextViewer.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/components/item_handlers/LdPlainTextViewer.vue b/viewer/src/components/item_handlers/LdPlainTextViewer.vue index cd26d9d..79465d5 100644 --- a/viewer/src/components/item_handlers/LdPlainTextViewer.vue +++ b/viewer/src/components/item_handlers/LdPlainTextViewer.vue | |||
@@ -27,11 +27,12 @@ | |||
27 | </template> | 27 | </template> |
28 | 28 | ||
29 | <script lang="ts"> | 29 | <script lang="ts"> |
30 | import { PlainTextItem } from "@/@types/gallery"; | ||
30 | import { Component, Prop, Vue } from "vue-property-decorator"; | 31 | import { Component, Prop, Vue } from "vue-property-decorator"; |
31 | 32 | ||
32 | @Component | 33 | @Component |
33 | export default class LdPlainTextViewer extends Vue { | 34 | export default class LdPlainTextViewer extends Vue { |
34 | @Prop({ required: true }) readonly item!: Gallery.PlainText; | 35 | @Prop({ required: true }) readonly item!: PlainTextItem; |
35 | 36 | ||
36 | get itemResourceUrl(): string { | 37 | get itemResourceUrl(): string { |
37 | return this.$galleryStore.resourceRoot + this.item.properties.resource; | 38 | return this.$galleryStore.resourceRoot + this.item.properties.resource; |