el-dialog.show-img-dialog(
:visible.sync="showDialog"
top="0%"
fullscreen
append-to-body
)
el-carousel(
ref="carousel"
height="100%"
:initial-index="index"
:autoplay="false"
:arrow="'always'"
:indicator-position="'none'"
:class="{'hide-left': hideLeft, 'hide-right': hideRight}"
@change="changeHandle"
)
el-carousel-item(
v-for="item in list"
:key="item.url"
)
img(:src="item.url")