|
|
@@ -90,6 +90,8 @@ import { Model, Query } from '@vuex-orm/core'
|
|
|
import { QUERY_TYPE } from '~/types/enums'
|
|
|
import { repositoryHelper } from '~/services/store/repository'
|
|
|
import { ContactPoint } from '~/models/Core/ContactPoint'
|
|
|
+import {OrganizationAddressPostal} from "~/models/Organization/OrganizationAddressPostal";
|
|
|
+import {Country} from "~/models/Core/Country";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'ContactPoint',
|
|
|
@@ -116,7 +118,10 @@ export default defineComponent({
|
|
|
id,
|
|
|
loading
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ beforeDestroy() {
|
|
|
+ repositoryHelper.cleanRepository(ContactPoint)
|
|
|
+ },
|
|
|
})
|
|
|
</script>
|
|
|
<style>
|