UNPKG
dify-components
Version:
latest (1.0.0)
1.0.0
This is a modern component library template based on Turborepo+Vue 3.5+TypeScript.
dify-components
/
packages
/
ui
/
src
/
components
/
Dialog
/
index.ts
8 lines
(5 loc)
•
177 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ withInstall }
from
'~/_utils'
;
import
Dialog
from
'./Dialog.vue'
;
export
const
VDialog
=
withInstall
(
Dialog
);
export
default
VDialog
;
export
*
from
'./Dialog.types'
;