Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions components/Clinic.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,6 @@
<script>
import Map from '@/components/Map.vue'
import Meta from '~/assets/mixins/meta'
// import firebase from '@/plugins/firebase'
// const db = firebase.firestore()
export default {
components: {
Map
Expand All @@ -137,13 +135,6 @@ export default {
methods: {
async getClinic () {
const clinic = await import(`~/data/clinics/${this.$route.params.id}.json`)
// const clinics = await db.collection('clinics')
// .where('id', '==', '1')
// .get()
// clinics.forEach((doc) => {
// console.log(doc.data().name)
// this.name = doc.data().name
// })
this.clinic = clinic
}
},
Expand Down
2 changes: 1 addition & 1 deletion components/Map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
style="width: 100%; height: 100%"
>
<GmapMarker
:key="index"
v-for="(m, index) in markers"
:key="index"
:position="m.position"
:clickable="true"
:draggable="true"
Expand Down
2 changes: 1 addition & 1 deletion components/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
flat
>
<v-toolbar-title>
検索ヒット数 (<b v-model="hitCount">
検索ヒット数 (<b>
{{ hitCount.toLocaleString() }}
</b>件)
</v-toolbar-title>
Expand Down