1
0

admin.vue 815 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <main class="flex justify-center">
  3. <!-- Page Section -->
  4. <section class="max-w-5xl grid grid-cols-3 gap-5 py-10">
  5. <h1>Administration Center</h1>
  6. </section>
  7. </main>
  8. </template>
  9. <script>
  10. /* Import components. */
  11. // import UnderConstruction from '@/components/UnderConstruction'
  12. export default {
  13. components: {
  14. // UnderConstruction,
  15. },
  16. data: () => {
  17. return {
  18. //
  19. }
  20. },
  21. created: async function () {
  22. /* Retrieve session. */
  23. // const session = await this.hasSession()
  24. // .catch(err => console.error('Session Error:', err))
  25. /* Validate session. */
  26. // if (!session) {
  27. // return
  28. // }
  29. },
  30. mounted: function () {
  31. //
  32. },
  33. }
  34. </script>