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.

31 lines
624 B

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