index.vue 776 Bytes
<template>
  <layout-header>
    <template #left>
      <slot name="left"></slot>
    </template>
    <template #center>
      <slot name="center"></slot>
    </template>
    <template #ri-left>
      <slot name="ri-left"></slot>
    </template>
    <template #ri-right>
      <go-user-info></go-user-info>
      <slot name="ri-right"></slot>
    </template>
  </layout-header>
</template>
<script setup lang="ts">
import { LayoutHeader } from '@/layout/components/LayoutHeader'
/**
 * THINGS_KIT 升级版本这里有冲突
 * 修改引入路径
 * 源文件路径 import { GoUserInfo } from '@/components/GoUserInfo'
 * 修改后路径 import { GoUserInfo } from '@/components/external/GoUserInfo'
 */
import { GoUserInfo } from '@/components/external/GoUserInfo'
</script>