2020-08-27 17:18:57 +08:00

48 lines
1.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="button-page article">
<h1>Carousel 轮播</h1>
<h2>概述</h2>
<p>基础组件触发业务逻辑时使用</p>
<h2>代码示例</h2>
<Row class="panel">
<Cell class="son-panel" span="12">
<div class="panel-case">
<Carousel :data="list" :interval="interval"></Carousel>
</div>
<div class="panel-header">
<span>基本用法</span>
</div>
<div class="panel-desc">
<p></p>
</div>
</Cell>
<div class="panel-split">
</div>
<Cell class="son-panel" span="12">
<div class="code">
</div>
</Cell>
</Row>
</div>
</template>
<script type="text/ecmascript-6">
import imgUrl from "../../images/web32002.jpg"
export default {
data: function () {
return {
interval: 3000,
list: [{
image: imgUrl,
link: ''
}, {
image: imgUrl,
link: ''
}]
}
}
}
</script>