Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save softauthor/8eca38a0c70221cc4af88442c0359290 to your computer and use it in GitHub Desktop.
Save softauthor/8eca38a0c70221cc4af88442c0359290 to your computer and use it in GitHub Desktop.
<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