export default {
name: 'AppMap',
data () {
return {
mounted () {
this.map = L.map(this.$refs.map).setView([55.75222, 37.61556], 13);
const attribution = '© <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors';
const tileUrl = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
const tiles = L.tileLayer (tileUrl, {attribution});
tiles.addTo (this.map);
}
}
}
}
Какое решение будет верным по-вашему?