海先生
海先生
.el-menu-vertical-demo:not(.el-menu--collapse) { width: 200px; min-height: 400px; }
have u find the way use `monorepo` to adapt to use `vue-demi` for `SFC`? i try to this but when i use `vite-plugin-dts` generate `d.ts` there still have many compatibility...
> > have u find the way use `monorepo` to adapt to use `vue-demi` for `SFC`? i try to this but when i use `vite-plugin-dts` generate `d.ts` there still have...
> @Hisioni can you share your `vue-demi` repo? If it possible Of course, in this [repository](https://github.com/Hisioni/vue-demi-repo-sfc), still have question, i don't know how to config to generate d.ts on every...
> @hxzAugustinus 1 创建vxeResolver.ts > > ```ts > import type { ComponentResolver, SideEffectsInfo } from "unplugin-vue-components" > import { kebabCase } from "unplugin-vue-components" > > const getSideEffects = (name: string):...
没看懂,到底要怎么配置
vite 的 umd 转 xe-utils ,运行也会报错
貌似是 `vxe-table` v2 版本使用 `xe-utils` 的问题
我发现我的问题了,`xe-utils` 在 `vxe-table` v2 版本下,必须要在 `vxe-table` import 之前引入 ```typescript import VXETable from 'vxe-table' import XEUtils from 'xe-utils' ``` 改为 ```typescript import XEUtils from 'xe-utils' import VXETable from 'vxe-table' ```