Messaging.vue 360 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <main class="h-full">
  3. <UnderConstruction />
  4. </main>
  5. </template>
  6. <script>
  7. export default {
  8. data: () => {
  9. return {
  10. //
  11. }
  12. },
  13. computed: {
  14. //
  15. },
  16. methods: {
  17. //
  18. },
  19. created: async function () {
  20. //
  21. },
  22. mounted: function () {
  23. //
  24. },
  25. }
  26. </script>