mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
17 lines
329 B
Vue
17 lines
329 B
Vue
<template>
|
|
<!-- svg加载图 -->
|
|
<div class="go-loading-svg go-flex-center">
|
|
<img src="~@/assets/images/tips/loadingSvg.svg" alt=""></div>
|
|
</div>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
@include go('loading-svg') {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: transparent;
|
|
img {
|
|
height: 50px;
|
|
}
|
|
}
|
|
</style>
|