From 462679a77ebef1e705f4c187ec93699571f64bd4 Mon Sep 17 00:00:00 2001 From: NathanAP Date: Tue, 20 Dec 2022 09:29:42 -0300 Subject: [PATCH] Added a center instead of required on Map component. --- src/components/map.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map.vue b/src/components/map.vue index 5aa2253..cde5294 100644 --- a/src/components/map.vue +++ b/src/components/map.vue @@ -19,7 +19,7 @@ import { mappedPropsToVueProps } from './build-component.js' const props = { center: { - required: true, + default: { lat: 0, lng: 0 }, twoWay: true, type: Object, noBind: true,