fixed conflict

This commit is contained in:
Kostya
2024-03-23 19:57:37 +03:00

View File

@@ -40,7 +40,7 @@
</div> </div>
</template> </template>
<script> <script>
import { reactive, ref, onMounted } from 'vue' import { reactive, ref, onMounted } from "vue";
import AsideBarComponent from "@/components/AsidebarComponent.vue"; import AsideBarComponent from "@/components/AsidebarComponent.vue";
import HeaderComponent from "@/components/HeaderComponent.vue"; import HeaderComponent from "@/components/HeaderComponent.vue";
@@ -117,17 +117,16 @@ export default {
stopAutoPlay() stopAutoPlay()
} }
} }
} } catch (error) {
catch (error) { void(error);
console.error(error)
} }
} }
function stopAutoPlay() { function stopAutoPlay() {
autoPlay.value = 0 autoPlay.value = 0;
} }
return { slides, autoPlay, handleStepCarousel, stopAutoPlay, targetColor } return { slides, autoPlay, handleStepCarousel, stopAutoPlay, targetColor };
}, },
} }
</script> </script>