1
0

editors.vue 386 B

123456789101112131415161718192021222324
  1. <template>
  2. <main class="bg-white h-full">
  3. <!-- Page Section -->
  4. <section class="p-20">
  5. <UnderConstruction />
  6. </section>
  7. </main>
  8. </template>
  9. <script>
  10. export default {
  11. data: () => {
  12. return {
  13. //
  14. }
  15. },
  16. created: async function () {
  17. //
  18. },
  19. mounted: function () {
  20. //
  21. },
  22. }
  23. </script>