aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/components/LdTitle.vue
diff options
context:
space:
mode:
authorzeroinformatique2021-07-03 00:48:53 +0200
committerGitHub2021-07-03 00:48:53 +0200
commitb6605e2c4ee73ac8b994624098344db5e44ac07d (patch)
tree5ed06cc5ecdabe070f6fdb9bc4f9a8a3b435cbe6 /viewer/src/components/LdTitle.vue
parent08ac32103fb5f8cca1861267dfd07a7c0d2faf62 (diff)
parent1f0377c1b4c2959c73fe4e368673f057ef369917 (diff)
downloadldgallery-b6605e2c4ee73ac8b994624098344db5e44ac07d.tar.gz
Merge pull request #302 from ldgallery/oz-types-normalization
viewer: types normalization
Diffstat (limited to 'viewer/src/components/LdTitle.vue')
-rw-r--r--viewer/src/components/LdTitle.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/viewer/src/components/LdTitle.vue b/viewer/src/components/LdTitle.vue
index 074008d..e1d47d1 100644
--- a/viewer/src/components/LdTitle.vue
+++ b/viewer/src/components/LdTitle.vue
@@ -18,12 +18,13 @@
18--> 18-->
19 19
20<script lang="ts"> 20<script lang="ts">
21import { Component, Vue, Watch, Prop } from "vue-property-decorator"; 21import { Item } from "@/@types/gallery";
22import { Component, Prop, Vue, Watch } from "vue-property-decorator";
22 23
23@Component 24@Component
24export default class LdTitle extends Vue { 25export default class LdTitle extends Vue {
25 @Prop({ required: true }) readonly galleryTitle!: string; 26 @Prop({ required: true }) readonly galleryTitle!: string;
26 @Prop() readonly currentItem?: Gallery.Item; 27 @Prop() readonly currentItem?: Item;
27 28
28 render() { 29 render() {
29 return null; 30 return null;