mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
705 B
33 lines
705 B
<template lang='pug'>
|
|
v-container(fluid, fill-height)
|
|
v-layout(row wrap)
|
|
v-flex(xs12)
|
|
.admin-header-icon: v-icon(size='80', color='grey lighten-2') show_chart
|
|
.headline.primary--text Statistics
|
|
.subtitle-1.grey--text Useful information about your wiki
|
|
.pa-3
|
|
fingerprint-spinner(
|
|
:animation-duration='1500'
|
|
:size='128'
|
|
color='#e91e63'
|
|
)
|
|
.caption.pink--text.mt-3 Compiling latest data...
|
|
</template>
|
|
|
|
<script>
|
|
import { FingerprintSpinner } from 'epic-spinners'
|
|
|
|
export default {
|
|
components: {
|
|
FingerprintSpinner
|
|
},
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss'>
|
|
|
|
</style>
|