diff options
author | Zero~Informatique | 2020-06-20 16:50:49 +0200 |
---|---|---|
committer | OzoneGrif | 2020-06-28 14:11:13 +0200 |
commit | 170d7a61f720ece9dc4b347b19f5a8213f1d8984 (patch) | |
tree | 3a7af0595faea4a98437f8f73b3172529bda3a1d /viewer/src/components/LdError.vue | |
parent | 06355c9cebce469d3d827d48043387144c2458a5 (diff) | |
download | ldgallery-170d7a61f720ece9dc4b347b19f5a8213f1d8984.tar.gz |
viewer: prettier formatting based on eslint-prettier plugin
Diffstat (limited to 'viewer/src/components/LdError.vue')
-rw-r--r-- | viewer/src/components/LdError.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/components/LdError.vue b/viewer/src/components/LdError.vue index a53942d..c71e2ad 100644 --- a/viewer/src/components/LdError.vue +++ b/viewer/src/components/LdError.vue | |||
@@ -30,7 +30,8 @@ | |||
30 | <script lang="ts"> | 30 | <script lang="ts"> |
31 | import { Component, Prop, Vue } from "vue-property-decorator"; | 31 | import { Component, Prop, Vue } from "vue-property-decorator"; |
32 | 32 | ||
33 | @Component export default class LdError extends Vue { | 33 | @Component |
34 | export default class LdError extends Vue { | ||
34 | @Prop({ required: true, type: String }) readonly icon!: string; | 35 | @Prop({ required: true, type: String }) readonly icon!: string; |
35 | @Prop({ required: true, type: String }) readonly message!: string; | 36 | @Prop({ required: true, type: String }) readonly message!: string; |
36 | } | 37 | } |