UNPKG
vue-admin-core
Version:
latest (0.0.1-Alpha.21)
0.0.1-Alpha.21
0.0.1-Alpha.20
0.0.1-Alpha.19
0.0.1-Alpha.18
0.0.1-Alpha.17
0.0.1-Alpha.16
0.0.1-Alpha.15
0.0.1-Alpha.14
0.0.1-Alpha.13
0.0.1-Alpha.12
0.0.1-Alpha.11
0.0.1-Alpha.10
0.0.1-Alpha.9
0.0.1-Alpha.8
0.0.1-Alpha.7
0.0.1-Alpha.5
0.0.1-Alpha.4
0.0.1-Alpha.3
0.0.1-Alpha.2
0.0.1-Alpha.1
A Component Library for Vue 3
github.com/element-plus/element-plus
element-plus/element-plus
vue-admin-core
/
es
/
hooks
/
elementPlus
/
useElDialog.mjs
10 lines
(7 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ElDialog
}
from
'element-plus'
;
import
{ useCorePopup }
from
'../__shared__/useCorePopup.mjs'
;
function
useElDialog
(
title, content
) {
return
useCorePopup
(title,
ElDialog
, content); }
export
{ useElDialog };
//# sourceMappingURL=useElDialog.mjs.map