iview-loader icon indicating copy to clipboard operation
iview-loader copied to clipboard

Better to combine with webpack

Results 12 iview-loader issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/minimistjs/minimist) and [mkdirp](https://github.com/isaacs/node-mkdirp). These dependencies needed to be updated together. Updates `minimist` from 1.2.0 to 1.2.8 Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option...

dependencies

Bumps [minimist](https://github.com/minimistjs/minimist) and [mkdirp](https://github.com/isaacs/node-mkdirp). These dependencies needed to be updated together. Updates `minimist` from 1.2.0 to 1.2.8 Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option...

dependencies

Bumps [debug](https://github.com/debug-js/debug), [compression](https://github.com/expressjs/compression), [express](https://github.com/expressjs/express) and [serve-index](https://github.com/expressjs/serve-index). These dependencies needed to be updated together. Updates `debug` from 2.6.8 to 2.6.9 Release notes Sourced from debug's releases. 2.6.9 Patches Remove ReDoS regexp...

dependencies

Bumps [express](https://github.com/expressjs/express) from 4.15.4 to 4.18.2. Release notes Sourced from express's releases. 4.18.2 Fix regression routing a large stack in a single route deps: [email protected] deps: [email protected] perf: remove unnecessary...

dependencies

Bumps [qs](https://github.com/ljharb/qs) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together. Updates `qs` from 6.4.0 to 6.11.0 Changelog Sourced from qs's changelog. 6.11.0 [New] [Fix] stringify: revert 0e903c0; add commaRoundTrip...

dependencies

Bumps [loader-utils](https://github.com/webpack/loader-utils) to 1.4.2 and updates ancestor dependency [webpack](https://github.com/webpack/webpack). These dependencies need to be updated together. Updates `loader-utils` from 1.1.0 to 1.4.2 Release notes Sourced from loader-utils's releases. v1.4.2 1.4.2...

dependencies

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.1.0 to 1.4.2. Release notes Sourced from loader-utils's releases. v1.4.2 1.4.2 (2022-11-11) Bug Fixes ReDoS problem (#226) (17cbf8f) v1.4.1 1.4.1 (2022-11-07) Bug Fixes security problem (#220) (4504e34)...

dependencies

例如自定义的组件名叫做 SwitchTag, 被转换成了i-switchTag

Circle在iview中指的是圆形进度条 iview-loader中会把`Circle`替换为`i-circle`以避免和web原生标签冲突 但匹配标签的正则只考虑了-分割的情况,会有误伤情况 比如下面代码中全局定义了一个CircleLoading组件 main.js ```javascript import Vue from 'vue' import App from './App' import iView from 'iview' Vue.config.productionTip = false Vue.use(iView) import CircleLoading from './components/CircleLoading' Vue.component('CircleLoading', CircleLoading) new Vue({...