Skip to content

Commit 261b4ef

Browse files
authored
fix(vueuse-directive): prefix as param with "v"
Fix #827
1 parent c69425e commit 261b4ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/resolvers/vueuse-directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function VueUseDirectiveResolver(): ComponentResolver {
3535
}
3636

3737
if (directives && directives.includes(name))
38-
return { name: `v${name}`, as: name, from: '@vueuse/components' }
38+
return { name: `v${name}`, as: `v${name}`, from: '@vueuse/components' }
3939
},
4040
}
4141
}

0 commit comments

Comments
 (0)