We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cfaed0 commit cd85b64Copy full SHA for cd85b64
examples/src/components/GeometryTest.vue
@@ -3,7 +3,7 @@
3
<div style="height: 10%; overflow: auto;">
4
<h3>Geometry</h3>
5
<button
6
- @click="clickBtn"
+ @click="clickBtn"
7
>Change rectange style</button>
8
</div>
9
<l-map
@@ -69,7 +69,7 @@ export default {
69
methods: {
70
clickBtn () {
71
this.rectangle.style.weight++;
72
- this.rectangle.style.color = this.rectangle.style.weight % 2 === 0 ? 'blue' : 'green'
+ this.rectangle.style.color = this.rectangle.style.weight % 2 === 0 ? 'blue' : 'green';
73
}
74
75
};
0 commit comments