Skip to content

Commit

Permalink
272: rename SliderOptions.ts in MucSliderOptions.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
lehju committed Jan 8, 2025
1 parent 0cfeb05 commit e39aa6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Slider/MucSlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</svg>
</button>
<Splide
:options="sliderOptions"
:options="mucSliderOptions"
aria-label="Dies ist ein Karussell mit rotierenden Elementen. Verwenden Sie
die Pfeiltaste links und rechts oder die Buttons um zu navigieren."
ref="splide"
Expand Down Expand Up @@ -50,7 +50,7 @@
import { Splide } from "@splidejs/vue-splide";
import { computed, onMounted, ref, useTemplateRef } from "vue";
import { sliderOptions } from "./SliderOptions";
import { mucSliderOptions } from "./MucSliderOptions";
defineSlots<{
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Options } from "@splidejs/splide";

export const sliderOptions: Options = {
export const mucSliderOptions: Options = {
autoplay: false,
keyboard: true,
slideFocus: true,
Expand Down

0 comments on commit e39aa6a

Please sign in to comment.