schangxiang@126.com
2025-05-21 912ebf022f5aff755971341c555726fa6ac5496d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { defineComponent } from 'vue'
import './Layout.scss'
import 'vxe-table/lib/style.css'
 
export default defineComponent({
  name: 'layout',
  setup(props, { slots, attrs }) {
    return () => {
      return (
        <el-config-provider {...attrs} namespace="cs">
          <ClientOnly>{slots.default?.()}</ClientOnly>
        </el-config-provider>
      )
    }
  },
})