privacy.vue 495 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <main>
  3. <!-- Header -->
  4. <SiteHeader pageId="privacy" />
  5. <!-- Page Section -->
  6. <section class="content">
  7. <div class="container-fluid">
  8. <UnderConstruction />
  9. </div>
  10. </section>
  11. </main>
  12. </template>
  13. <script>
  14. export default {
  15. data: () => {
  16. return {
  17. //
  18. }
  19. },
  20. created: async function () {
  21. //
  22. },
  23. mounted: function () {
  24. //
  25. },
  26. }
  27. </script>