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
15.10.0
无
Steps to reproduce 无
生成 shortFilePath 时,添加 resourceQuery 生成的依赖
我们的开发场景时,基于 yaml 生成文档,尽管 yaml 只是一个数据结构,但是我们用的有点奇葩:
./api.yaml ==> 生成的文档,包含组件示例,api 介绍 ./api.yaml?yaml-doc=api ==> 只生成 api 介绍
./api.yaml
./api.yaml?yaml-doc=api
由于 vue-loader 在 15.10.0 之后将 resourceQuery 不再用于生成 module id,所以两个地址生成的 module id 是一样的。导致 hot-loader 运行时,基于 module id ./api.yaml?yaml-doc=api 的结果会覆盖 ./api.yaml 的结果(毕竟 module id 一样)。所以最终 ./api.yaml 使用的组件被替换成了 ./api.yaml?yaml-doc=api 的组件,导致页面出现问题。
下面是图片示例
正确的结果
错误的结果
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
15.10.0
Reproduction link
无
Steps to reproduce
无
What is expected?
生成 shortFilePath 时,添加 resourceQuery 生成的依赖
What is actually happening?
Issue Description
我们的开发场景时,基于 yaml 生成文档,尽管 yaml 只是一个数据结构,但是我们用的有点奇葩:
./api.yaml
==> 生成的文档,包含组件示例,api 介绍./api.yaml?yaml-doc=api
==> 只生成 api 介绍由于 vue-loader 在 15.10.0 之后将 resourceQuery 不再用于生成 module id,所以两个地址生成的 module id 是一样的。导致 hot-loader 运行时,基于 module id
./api.yaml?yaml-doc=api
的结果会覆盖./api.yaml
的结果(毕竟 module id 一样)。所以最终./api.yaml
使用的组件被替换成了./api.yaml?yaml-doc=api
的组件,导致页面出现问题。下面是图片示例
正确的结果
错误的结果
The text was updated successfully, but these errors were encountered: