mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
26 lines
407 B
Vue
26 lines
407 B
Vue
<template>
|
|
<b-row v-loading="true" id="loading"></b-row>
|
|
</template>
|
|
<script>
|
|
import Vue from 'vue'
|
|
import { Loading } from 'element-ui'
|
|
|
|
Vue.use(Loading.directive)
|
|
export default {}
|
|
</script>
|
|
<style>
|
|
#loading {
|
|
min-height: 200px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.el-loading-spinner .path {
|
|
stroke: #66615b !important;
|
|
}
|
|
|
|
.el-loading-mask {
|
|
background: transparent !important;
|
|
}
|
|
</style>
|