Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
ThunderHubWeb
/
b712db1b232ed44f4c96f15b7eb5a8cb371378d4
/
.
/
src
/
hooks
/
net
/
dict.ts
blob: 9c2c41c5a56da030f22835b0197d2d1e42e6d3d6 [
file
] [
log
] [
blame
]
import
{
getDictValueEnum
}
from
"@/services/system/dict"
;
export
function
useDictEnum
(
name
:
string
)
{
const
data
=
getDictValueEnum
(
name
);
return
data
;
}