feat(VInputPassword): Add VInputPassword Component

This commit is contained in:
陈凯龙
2021-12-30 16:03:02 +08:00
parent 448ac5293e
commit a1bf7e9b55
27 changed files with 1812 additions and 1424 deletions

View File

@@ -0,0 +1,9 @@
import { inject } from 'vue'
export function useConfigGlobal() {
const configGlobal = inject('configGlobal', {}) as VConfigGlobalTypes
return {
configGlobal
}
}