UNPKG
create-ias-lowcode
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
create-ias-lowcode
/
dist
/
templates
/
base
/
src
/
components
/
index.ts
8 lines
(7 loc)
•
346 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
// 注意:这个文件只用于开发时的引用,打包时会为每个组件单独生成文件
// 导出所有组件
import
*
as
BaseButton
from
'./BaseButton'
;
import
*
as
BaseInput
from
'./BaseInput'
;
import
*
as
BaseTab
from
'./BaseTab'
;
import
*
as
BaseCard
from
'./BaseCard'
;
export
{
BaseButton
,
BaseInput
,
BaseTab
,
BaseCard
};