Last active
January 28, 2020 23:37
-
-
Save softauthor/8eca38a0c70221cc4af88442c0359290 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
export default { | |
data() { | |
return { | |
lat: 0, | |
lng: 0, | |
type: "", | |
radius: "", | |
places: [] | |
}; | |
}, | |
computed: { | |
coordinates() { | |
return `${this.lat}, ${this.lng}`; | |
} | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment