Skip to content

Commit

Permalink
Change the way the component is imported
Browse files Browse the repository at this point in the history
  • Loading branch information
rr-adam committed Sep 1, 2022
1 parent ae40633 commit e0618d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion auto/src/views/Ontology.vue
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,7 @@
<script>
import { mapState } from 'vuex';
import Multiselect from 'vue-multiselect';
import customLink from '../components/chunks/link';
import {
getEntity, getFindSearch, getModules, getOntologyVersions, getHint,
} from '../api/ontology';
Expand All @@ -971,7 +972,7 @@ export default {
Stats: () => import(/* webpackChunkName: "Stats" */ "../components/StatsComponent"),
ResourceSection: () => import(/* webpackChunkName: "ResourceSection" */ "../components/Ontology/ResourceSection"),
DownloadSection: () => import(/* webpackChunkName: "DownloadSection" */ "../components/Ontology/DownloadSection"),
customLink: () => import(/* webpackChunkName: "customLink" */ "../components/chunks/link"),
customLink,
Multiselect,
},
props: ['ontology'],
Expand Down
3 changes: 2 additions & 1 deletion fibo/src/views/Ontology.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1133,6 +1133,7 @@
<script>
import { mapState } from "vuex";
import Multiselect from "vue-multiselect";
import customLink from '../components/chunks/link';
import { getEntity, getModules, getOntologyVersions, getFindSearch, getFindProperties } from "../api/ontology";
export default {
Expand All @@ -1143,7 +1144,7 @@ export default {
StatsComponent: () => import(/* webpackChunkName: "Stats" */ "../components/StatsComponent"),
ResourceSection: () => import(/* webpackChunkName: "ResourceSection" */ "../components/Ontology/ResourceSection"),
DownloadSection: () => import(/* webpackChunkName: "DownloadSection" */ "../components/Ontology/DownloadSection"),
customLink: () => import(/* webpackChunkName: "customLink" */ "../components/chunks/link"),
customLink,
Multiselect,
},
props: ["ontology"],
Expand Down
3 changes: 2 additions & 1 deletion idmp/src/views/Ontology.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1135,6 +1135,7 @@
<script>
import { mapState } from "vuex";
import Multiselect from "vue-multiselect";
import customLink from '../components/chunks/link';
import { getEntity, getModules, getOntologyVersions, getFindSearch, getFindProperties } from "../api/ontology";
export default {
Expand All @@ -1145,7 +1146,7 @@ export default {
StatsComponent: () => import(/* webpackChunkName: "Stats" */ "../components/StatsComponent"),
ResourceSection: () => import(/* webpackChunkName: "ResourceSection" */ "../components/Ontology/ResourceSection"),
DownloadSection: () => import(/* webpackChunkName: "DownloadSection" */ "../components/Ontology/DownloadSection"),
customLink: () => import(/* webpackChunkName: "customLink" */ "../components/chunks/link"),
customLink,
Multiselect,
},
props: ["ontology"],
Expand Down

0 comments on commit e0618d4

Please sign in to comment.