1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/vue-loader/lib/loaders/stylePostLoader.js

26 lines
790 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
const qs = require('querystring')
2024-01-16 21:26:16 +08:00
const { resolveCompiler } = require('../compiler')
2023-12-18 13:12:25 +08:00
// This is a post loader that handles scoped CSS transforms.
// Injected right before css-loader by the global pitcher (../pitch.js)
// for any <style scoped> selection requests initiated from within vue files.
module.exports = function (source, inMap) {
const query = qs.parse(this.resourceQuery.slice(1))
2024-01-16 21:26:16 +08:00
const { compiler } = resolveCompiler(this.rootContext, this)
const { code, map, errors } = compiler.compileStyle({
2023-12-18 13:12:25 +08:00
source,
filename: this.resourcePath,
id: `data-v-${query.id}`,
map: inMap,
scoped: !!query.scoped,
2024-01-16 21:26:16 +08:00
isProd: query.prod != null,
2023-12-18 13:12:25 +08:00
trim: true
})
if (errors.length) {
this.callback(errors[0])
} else {
this.callback(null, code, map)
}
}