index.vue 372 B

12345678910111213141516171819
  1. <!--
  2. * @Author: LiZhiWei
  3. * @Date: 2026-01-09 17:32:06
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2026-01-23 08:34:19
  6. * @Description:
  7. -->
  8. <template>
  9. <div>
  10. <m-header />
  11. <slot />
  12. <m-footer />
  13. <consultation-modal v-model="isConsultationOpen" />
  14. </div>
  15. </template>
  16. <script setup lang="ts">
  17. const { isConsultationOpen } = useConsultation()
  18. </script>