Corrected import statement

This commit is contained in:
2021-09-06 15:56:48 +02:00
parent 4726aedd1f
commit 9fc1f312c5
2 changed files with 3 additions and 2 deletions

2
dist/js/field.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -10,7 +10,7 @@
</template>
<script>
import { Polyline } from "vue2-leaflet";
import { Polyline } from "./Polyline";
export default {
props: {
@@ -51,6 +51,7 @@ export default {
triggerChange(markers) {
console.log("forwarding markers:", markers);
this.queryNavigation(markers);
this.$emit("input", markers);
},
},