21 lines
317 B
Vue
21 lines
317 B
Vue
<script>
|
|
export default {
|
|
name: "AiMonitorCarousel",
|
|
props: {
|
|
list: {default: () => []}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<section class="AiMonitorCarousel">
|
|
<el-carousel height="100%" indicator-position="none" arrow="hover">
|
|
|
|
</el-carousel>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|