n20-common-lib 1.2.19 → 1.2.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "1.2.19",
3
+ "version": "1.2.20",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -71,6 +71,7 @@ import { linkPush, linkGo } from './utils/urlToGo'
71
71
  import forEachs from './utils/forEachs'
72
72
  import list2tree from './utils/list2tree'
73
73
  import { has as isHas } from './directives/VHas/index.js'
74
+ import { hasG as isHasG } from './directives/VHas/index.js'
74
75
 
75
76
  /** 国际化 */
76
77
  import i18n from './utils/i18n'
@@ -220,6 +221,7 @@ export {
220
221
  linkPush,
221
222
  linkGo,
222
223
  isHas,
224
+ isHasG,
223
225
  dayjs,
224
226
  numerify
225
227
  }