0👍
This works for me:
<LMap
:zoom="zoom"
:center="center"
@update:center="centerUpdated"
ref="map"
:watch="true"
:options="{ zoomControl: false, dragging: mobileDragg, tap: mobileTap }"
>
Methods:
// Leaflet mobile fix
mobileDragg() {
return !L.Browser.mobile;
},
// Leaflet mobile fix
mobileTap() {
return !L.Browser.mobile;
},
- [Vuejs]-With VueJS Cli how should do to have a variable common to all pages and be able to watch it in a page
- [Vuejs]-How i can add a vue template in exist project
Source:stackexchange.com