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
/
Button
/
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
Button
from
'./Button.vue'
;
export
const
VButton
=
withInstall
(
Button
);
export
default
VButton
;
export
*
from
'./Button.types'
;