We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669be0b commit 75011eeCopy full SHA for 75011ee
src/core/resolvers/element-ui.ts
@@ -47,6 +47,11 @@ export function ElementUiResolver(options: ElementUiResolverOptions = {}): Compo
47
if (name.startsWith('El')) {
48
const compName = name.slice(2)
49
const partialName = kebabCase(compName)
50
+ if (partialName === 'collapse-transition') {
51
+ return {
52
+ path: `element-ui/lib/transitions/${partialName}`,
53
+ }
54
55
return {
56
path: `element-ui/lib/${partialName}`,
57
sideEffects: getSideEffects(partialName, options),
0 commit comments