UNPKG
bd-admin
Version:
latest (1.0.12)
1.0.12
1.0.10
1.0.0
一款能根据需求快速配置vue后台管理的脚手架
github.com/lhpCode/bd-admin
lhpCode/bd-admin
bd-admin
/
commands
/
create
/
project_template_ts
/
src
/
hooks
/
useI18.ts
11 lines
(9 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { getCurrentInstance }
from
"vue"
;
export
default
function
()
{
const
get
= getCurrentInstance();
if
(!
get
)
return
;
const
{ config: { globalProperties }, } =
get
.appContext;
return
globalProperties.$t; }