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.

32 lines
705 B

  1. <template lang='pug'>
  2. v-container(fluid, fill-height)
  3. v-layout(row wrap)
  4. v-flex(xs12)
  5. .admin-header-icon: v-icon(size='80', color='grey lighten-2') show_chart
  6. .headline.primary--text Statistics
  7. .subtitle-1.grey--text Useful information about your wiki
  8. .pa-3
  9. fingerprint-spinner(
  10. :animation-duration='1500'
  11. :size='128'
  12. color='#e91e63'
  13. )
  14. .caption.pink--text.mt-3 Compiling latest data...
  15. </template>
  16. <script>
  17. import { FingerprintSpinner } from 'epic-spinners'
  18. export default {
  19. components: {
  20. FingerprintSpinner
  21. },
  22. data() {
  23. return {}
  24. }
  25. }
  26. </script>
  27. <style lang='scss'>
  28. </style>