index.vue 482 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <Page title="访客计划" styleReset="backNone">
  3. <template v-slot:body>
  4. <div class="h-full">
  5. <Workbench />
  6. </div>
  7. </template>
  8. </Page>
  9. </template>
  10. <script setup>
  11. import { ref } from "vue";
  12. import { useLifecycle } from "@hooks/useCommon.js";
  13. import Workbench from "./workbench.vue";
  14. useLifecycle({
  15. load: () => {
  16. console.log('load')
  17. },
  18. init: () => {
  19. console.log('init')
  20. }
  21. });
  22. </script>
  23. <style lang="scss" scoped>
  24. </style>