gradido/frontend/src/pages/Settings.vue
2022-11-02 14:02:16 +01:00

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>