第十八章:语言工具-warnings:非致命警告-重复的警告

18.1.4 重复的警告
默认地,大多数警告只是在一个给定位置第一次出现时才会打印,这里所说的"位置"是由模块和生成警告的相应行号的组合来定义的。

import warnings


def function_with_warning():
    warnings.warn('This is a warning!')


function_with_warning()
function_with_warning()
function_with_warning()

这个例子多次调用同一个函数,不过只生成一个警告。
在这里插入图片描述
"once"动作可以用来抑制相同消息在不同位置多次出现。

import warnings

warnings.simplefilter('once',UserWarning)

warnings.warn('This is a warning!')
warnings.warn('This is a warning!')
warnings.warn('This is a warning!')

在这里插入图片描述

PS C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp> npm run vue:serve Debugger attached. > cl_csm@0.1.0 vue:serve > vue-cli-service serve Debugger attached. INFO Starting development server... [hardsource:25fcdbf0] Using 42 MB of disk space. [hardsource:25fcdbf0] Writing new cache 25fcdbf0... [hardsource:25fcdbf0] Tracking node dependencies with: package-lock.json. 40% building 185/194 modules 9 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\core-js\modules\_iobject.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 40% building 218/236 modules 18 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\qs\lib\utils.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 24 │ @import "~element-ui/packages/theme-chalk/src/index"; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 24:9 root stylesheet 48% building 321/346 modules 25 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\core-js\modules\_string-pad.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 52% building 350/373 modules 23 active ...app\node_modules\vue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\RoStep.vue[BABEL] Note: The code generator has deoptimised the styling of C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\constant\kbnConst.js as it exceeds the max of 500KB. 54% building 367/423 modules 56 active ...UBE-A-APP\CL_CSM\src\main\webapp\node_modules\babel-loader\lib\index.js!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\validators\amount.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 4 │ @import './variables'; │ ^^^^^^^^^^^^^ ╵ stdin 4:9 root stylesheet 63% building 487/546 modules 59 active ...oader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Atoms\RaButton.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 63% building 488/546 modules 58 active ...oader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Atoms\RaButton.vue?vue&type=script&lang=jsDeprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--step-height, 2) or calc($--step-height / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 5 │ $--step-half-height: $--step-height / 2; │ ^^^^^^^^^^^^^^^^^^ ╵ stdin 5:22 root stylesheet 62% building 507/582 modules 75 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\vee-validate\dist\vee-validate.esm.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 62% building 513/585 modules 72 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\xe-utils\methods\index.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 520/591 modules 71 active ...b\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmInputRange.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 523/597 modules 74 active ...r\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmSelect.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 62% building 526/600 modules 74 active ...\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmDatePicker.vue?vue&type=style&index=0&id=22de6f5e&lang=scss&scoped=trueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 527/602 modules 75 active ...b\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmDatePicker.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 560/625 modules 65 active ...\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmTimeSelect.vue?vue&type=style&index=0&id=70f9fd2b&lang=scss&scoped=trueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 563/626 modules 63 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\popup\index.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 571/636 modules 65 active ...tions!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\contextmenu\Submenu.vue?vue&type=style&index=0&id=07b5451e&scoped=true&lang=cssDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 587/636 modules 49 active ...tions!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\contextmenu\Submenu.vue?vue&type=style&index=0&id=07b5451e&scoped=true&lang=cssDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 595/642 modules 47 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\mixins\focus.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 598/643 modules 45 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\mixins\focus.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 67% building 960/1010 modules 50 active ...in\webapp\node_modules\url-loader\dist\cjs.js??ref--4-0!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\assets\icomoon\fonts\icomoon.eot?20wc3hDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import "@/sdk/_variables.scss"; │ ^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 3:9 root stylesheet 67% building 965/1011 modules 46 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\es\src\event.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 998/1040 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\xe-utils\methods\base\helperDeleteProperty.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 17 │ @import "@/sdk/_variables.scss"; │ ^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 17:9 root stylesheet 66% building 1132/1199 modules 67 active ...lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 66% building 1134/1202 modules 68 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\vue-popper.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 66% building 1156/1219 modules 63 active ...1.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01Style.scss?vue&type=style&index=0&id=0b2bc8ab&lang=scss&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1160/1219 modules 59 active ...1.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01Style.scss?vue&type=style&index=0&id=0b2bc8ab&lang=scss&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1172/1221 modules 49 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\resize-event.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1182/1225 modules 43 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\throttle-debounce\debounce.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1183/1225 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\throttle-debounce\debounce.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1202/1265 modules 63 active ...c\main\webapp\node_modules\babel-loader\lib\index.js!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB03D01\CSMRCB03D01Model.jsDeprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import "./base.scss"; │ ^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import "./pagination.scss"; │ ^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import "./dialog.scss"; │ ^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 3:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 4 │ @import "./autocomplete.scss"; │ ^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 4:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 24 │ $--color-primary-light-1: mix($--color-white, $--color-primary, 10%) !default; /* 53a8ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 24:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 25 │ $--color-primary-light-2: mix($--color-white, $--color-primary, 20%) !default; /* 66b1ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 25:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 26 │ $--color-primary-light-3: mix($--color-white, $--color-primary, 30%) !default; /* 79bbff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 26:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 27 │ $--color-primary-light-4: mix($--color-white, $--color-primary, 40%) !default; /* 8cc5ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 27:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 28 │ $--color-primary-light-5: mix($--color-white, $--color-primary, 50%) !default; /* a0cfff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 28:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div(1, 5) or calc(1 / 5) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 487 │ $--group-option-flex: 0 0 (1/5) * 100% !default; │ ^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 487:28 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 32 │ margin-right: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 32:21 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 51 │ margin-right: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 51:21 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 70 │ margin-bottom: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 70:22 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 89 │ margin-bottom: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 89:22 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 7 │ color: mix($--tag-primary-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 7:10 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 14 │ color: mix($--tag-primary-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 14:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 24 │ color: mix($--tag-info-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 24:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 31 │ color: mix($--tag-info-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 31:14 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 42 │ color: mix($--tag-success-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 42:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Warning: 458 repetitive deprecation warnings omitted. 67% building 1332/1383 modules 51 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\objectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1353/1403 modules 50 active ...ue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB05D01\mixin\mailItiranInfoState.vueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 17 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 17:9 root stylesheet 67% building 1355/1403 modules 48 active ...ue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB05D01\mixin\mailItiranInfoState.vueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1370/1412 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\getYearDay.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1445/1501 modules 56 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\isSet.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1451/1505 modules 54 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\isWindow.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1472/1509 modules 37 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\async-validator\es\util.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1573/1632 modules 59 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1581/1632 modules 51 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1582/1632 modules 50 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1611/1657 modules 46 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\async-validator\es\validator\enum.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1623/1681 modules 58 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\autocomplete.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import './variables'; │ ^^^^^^^^^^^^^ ╵ stdin 1:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 5 │ @import 'vxe-table/styles/variable.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 5:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 11 │ @import 'vxe-table/styles/icon.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 11:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 12 │ @import 'vxe-table/styles/table.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 12:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 13 │ @import 'vxe-table/styles/column.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 13:9 root stylesheet 68% building 1664/1696 modules 32 active ...PP\CL_CSM\src\main\webapp\node_modules\url-loader\dist\cjs.js??ref--1-0!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\assets\images\かんむり.68% building 1690/1729 modules 39 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1692/1729 modules 37 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1694/1729 modules 35 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 98% after emitting CopyPlugin ERROR Failed to compile with 4 errors 14:43:32 error in ./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true Syntax Error: <span class="esc footer-key" v-if="escCaption">ESC</span> ^ Expected selector. ╷ 7 │ footer#footer /deep/ { │ ^ ╵ stdin 7:15 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\RoPopupFooter.vue (line 7, column 15) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true 4:14-500 15:3-20:5 16:22-508 @ ./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true @ ./src/components/sdk/Organisms/RoPopupFooter.vue @ ./src/sdk/rComponent.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true Syntax Error: // this.$refs.tranMenu.$el.focus(); ^ Expected selector. ╷ 52 │ margin: 0 0 0 auto; │ ^ ╵ stdin 52:22 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\NotFound.vue (line 52, column 22) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true 4:14-495 15:3-20:5 16:22-503 @ ./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true @ ./src/components/sdk/Organisms/NotFound.vue @ ./src/router.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external Syntax Error: justify-content: flex-end; ^ Expected selector. ╷ 66 │ justify-content: flex-end; │ ^ ╵ stdin 66:29 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMSTM01D01\CSMSTM01D01Style.scss (line 66, column 29) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external 4:14-384 15:3-20:5 16:22-392 @ ./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external @ ./src/views/CSM/CSMSTM01D01/CSMSTM01D01.vue @ ./src/router.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/sdk/vxe-custom.scss Syntax Error: @import 'vxe-table/styles/icon.scss'; ^ Can't find stylesheet to import. ╷ 11 │ @import 'vxe-table/styles/icon.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 11:9 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\vxe-custom.scss (line 11, column 9) @ ./src/sdk/vxe-custom.scss 4:14-227 15:3-20:5 16:22-235 @ ./src/sdk/rVxeTable.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js(中文)
最新发布
08-23
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值