|
// 导入以注册自定义元素
|
|
import './dice';
|
|
import './table';
|
|
import './md-link';
|
|
|
|
// 导出组件
|
|
export { Article } from './Article';
|
|
export type { ArticleProps } from './Article';
|
|
|
|
// 导出数据类型
|
|
export type { DiceProps } from './dice';
|
|
export type { TableProps } from './table';
|
|
|