BUG 27437
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<swiper class="AiNoticeBar" autoplay vertical circular :interval="2000">
|
<swiper class="AiNoticeBar" :autoplay="autoplay" vertical circular :interval="2000">
|
||||||
<swiper-item v-for="(item, index) in ops" :key="index" :display-multiple-items="rows" class="noticeItem">
|
<swiper-item v-for="(item, index) in ops" :key="index" :display-multiple-items="rows" class="noticeItem">
|
||||||
<slot :label="item"/>
|
<slot :label="item"/>
|
||||||
</swiper-item>
|
</swiper-item>
|
||||||
@@ -13,7 +13,8 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
list: {default: () => []},
|
list: {default: () => []},
|
||||||
rows: {default: 1},
|
rows: {default: 1},
|
||||||
nodeKey: {default: ""}
|
nodeKey: {default: ""},
|
||||||
|
autoplay: {default: true}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
ops() {
|
ops() {
|
||||||
|
|||||||
Reference in New Issue
Block a user