mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
29 lines
574 B
Vue
29 lines
574 B
Vue
<template>
|
|
<div>
|
|
<b-card v-if="skeleton">
|
|
{{ $t('navigation.settings') }}
|
|
<b-skeleton animation="wave" width="85%"></b-skeleton>
|
|
<b-skeleton animation="wave" width="55%"></b-skeleton>
|
|
<b-skeleton animation="wave" width="70%"></b-skeleton>
|
|
</b-card>
|
|
<b-card v-else>
|
|
{{ $t('navigation.settings') }}
|
|
</b-card>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'Settings',
|
|
data() {
|
|
return {
|
|
skeleton: true,
|
|
}
|
|
},
|
|
created() {
|
|
setTimeout(() => {
|
|
this.skeleton = false
|
|
}, 1500)
|
|
},
|
|
}
|
|
</script>
|