We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Vue REPL, any edits in the <template> would result in this error & with failure to autocomplete:
<template>
The error is related to this line of code: https://github.com/vuejs/language-tools/blob/7107d0ac24ccb292f9a876fba85dc835c4439788/packages/typescript-plugin/lib/requests/utils.ts#L43
export function getSelfComponentName(fileName: string) { + const baseName = path.basename(fileName); return capitalize(camelize(baseName.slice(0, baseName.lastIndexOf('.')))); }
It seems that path-browserify polyfill is not working properly here.
path-browserify
Patching it to something like this fixed it:
export function getSelfComponentName(fileName: string) { + const baseName = fileName.split('/').pop() ?? ''; - const baseName = path.basename(fileName); return capitalize(camelize(baseName.slice(0, baseName.lastIndexOf('.')))); }
The text was updated successfully, but these errors were encountered:
node:path
Successfully merging a pull request may close this issue.
In the Vue REPL, any edits in the
<template>
would result in this error & with failure to autocomplete:The error is related to this line of code:
https://github.com/vuejs/language-tools/blob/7107d0ac24ccb292f9a876fba85dc835c4439788/packages/typescript-plugin/lib/requests/utils.ts#L43
export function getSelfComponentName(fileName: string) { + const baseName = path.basename(fileName); return capitalize(camelize(baseName.slice(0, baseName.lastIndexOf('.')))); }
It seems that
path-browserify
polyfill is not working properly here.Patching it to something like this fixed it:
The text was updated successfully, but these errors were encountered: