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 41cd9a0 commit 29192feCopy full SHA for 29192fe
lib/loader.js
@@ -28,7 +28,6 @@ module.exports = function (content) {
28
var loaderContext = this
29
var options = this.options.vue || {}
30
var query = loaderUtils.parseQuery(this.query)
31
- var vueUrl = loaderUtils.getRemainingRequest(this)
32
var filePath = this.resourcePath
33
var fileName = path.basename(filePath)
34
var moduleId = '_v-' + hash(filePath)
@@ -67,7 +66,7 @@ module.exports = function (content) {
67
66
// select the corresponding part from the vue file
68
getSelectorString(type, index || 0) +
69
// the url to the actual vuefile
70
- vueUrl
+ filePath
71
)
72
}
73
0 commit comments