Skip to content

Commit e9bc7b3

Browse files
authored
fix(vueuse-directive): prefix as param with "v" (#828)
1 parent 4d6b364 commit e9bc7b3

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)