feat: start to implement carousel.

This commit is contained in:
cadiyak
2022-08-27 15:41:36 +02:00
parent fd177ef3e6
commit 0ebf7d9a03
8 changed files with 149 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
<template>
<div class="vp-raw flex flex-col">
<Carousel :slide="true" :slide-interval="1000"></Carousel>
</div>
</template>
<script setup>
import { Carousel } from '../../../../src/index'
</script>