Skip to content

Commit

Permalink
Merge pull request #132 from bcgov/scdicontact
Browse files Browse the repository at this point in the history
added the preload contact type
  • Loading branch information
suzalflueck authored Nov 28, 2023
2 parents 86efec8 + 839aaf0 commit 4b30a76
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/views/ContactsView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { useAppStore } from '@/stores/app'
import { ref } from 'vue'
import { ref, onMounted } from 'vue'
import InstituteService from '@/services/InstituteService'
import jsonexport from 'jsonexport/dist'
Expand Down Expand Up @@ -95,6 +95,9 @@ const searchContact = async () => {
console.error('Error fetching schools:', error)
}
}
onMounted(() => {
searchContact() // <div>
})
</script>

<template>
Expand Down

0 comments on commit 4b30a76

Please sign in to comment.