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>
| )
| }
| },
| })
|
|