Skip to content

Commit

Permalink
Merge pull request #55 from IBEC-BOX/fix/store
Browse files Browse the repository at this point in the history
fix: store import
  • Loading branch information
Aidosgd authored Feb 13, 2024
2 parents 3ceb5e2 + 85af0ca commit f78384f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/Pages/Vacancies.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<script setup>
import {defineProps, defineEmits, useAttrs} from 'vue'
import { useMainStore } from "../../store/mainStore.js";
import { useMainStore } from "../../store/mainStore";
const attrs = useAttrs()
const emit = defineEmits(['form-data'])
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/Parts/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
</template>

<script setup>
import { useMainStore } from "../../store/mainStore.js";
import { useMainStore } from "../../store/mainStore";
import {useAttrs, ref} from "vue";
const mainStore = useMainStore()
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/Parts/ErgVacancies.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

<script setup>
import {useAttrs} from "vue";
import {useMainStore} from "../../store/mainStore.js";
import {useMainStore} from "../../store/mainStore";
const attrs = useAttrs()
const mainStore = useMainStore()
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/Parts/Forms.vue
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@

<script setup>
import { ref, useAttrs } from 'vue'
import { useMainStore } from "../../store/mainStore.js";
import { useMainStore } from "../../store/mainStore";
const mainStore = useMainStore()
const checked = ref(false)
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/Parts/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

<script setup>
import { defineProps, useAttrs, computed, ref } from 'vue'
import { useMainStore } from "../../store/mainStore.js"
import { useMainStore } from "../../store/mainStore"
const mainStore = useMainStore()
const props = defineProps({
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/Parts/Slider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ import { register } from "swiper/element/bundle";
register();
import { defineProps, useAttrs, ref, onMounted } from "vue";
import { useMainStore } from "../../store/mainStore.js";
import { useMainStore } from "../../store/mainStore";
const mainStore = useMainStore();
//Attributes
Expand Down

0 comments on commit f78384f

Please sign in to comment.