| 12345678910111213141516171819202122232425262728 |
- <template>
- <Page title="访客计划" styleReset="backNone">
- <template v-slot:body>
- <div class="h-full">
- <Workbench />
- </div>
- </template>
- </Page>
- </template>
- <script setup>
- import { ref } from "vue";
- import { useLifecycle } from "@hooks/useCommon.js";
- import Workbench from "./workbench.vue";
- useLifecycle({
- load: () => {
- console.log('load')
- },
- init: () => {
- console.log('init')
- }
- });
- </script>
- <style lang="scss" scoped>
- </style>
|