From 7677ba47ee4efd289c4be6c6755b8463afcdedf4 Mon Sep 17 00:00:00 2001 From: qiang Date: Thu, 21 May 2020 16:36:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E9=83=A8=E5=88=86?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../packages/webpack-uni-app-loader/service/style.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/vue-cli-plugin-uni/packages/webpack-uni-app-loader/service/style.js b/packages/vue-cli-plugin-uni/packages/webpack-uni-app-loader/service/style.js index 0f494decf..5d54cdef3 100644 --- a/packages/vue-cli-plugin-uni/packages/webpack-uni-app-loader/service/style.js +++ b/packages/vue-cli-plugin-uni/packages/webpack-uni-app-loader/service/style.js @@ -1,7 +1,7 @@ -module.exports = function (source, map) { +module.exports = function (source, map) { /* eslint-disable no-mixed-operators */ console.warn( - `App平台 v3 模式暂不支持在 js 文件中引用"${this._module && this._module.rawRequest || this.resourcePath}"` + `App平台 v3 模式暂不支持在 js 文件中引用"${this._module && this._module.rawRequest || this.resourcePath}" 请改在 style 内引用` ) this.callback(null, '', map) -} +} -- GitLab