Fix wrong prop initialization

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2022-03-24 09:43:59 +01:00 committed by tykayn
parent e3b4d29a43
commit 97989f8de1
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export default class Vue2LeafletLocateControl extends Vue {
unknown
>;
@Prop({ type: Boolean, default: true }) visible = true;
@Prop({ type: Boolean, default: true }) visible!: boolean;
ready = false;