Skip to content

Commit add37d1

Browse files
committed
fix: update import paths in ExampleMouseScroll.vue to use local carousel module and CSS
1 parent 5e4e36d commit add37d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples/ExampleMouseScroll.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup>
2-
import { Carousel, Slide, Pagination, Navigation } from 'vue3-carousel'
3-
import { ref } from 'vue'
2+
import { Carousel, Pagination, Navigation, Slide } from '../../dist/carousel.mjs'
3+
import '../../dist/carousel.css'
44
55
const images = Array.from({ length: 10 }, (_, index) => ({
66
id: index + 1,

0 commit comments

Comments
 (0)