2026-02-26 00:47:26 +08:00
|
|
|
// 导入以注册自定义元素
|
|
|
|
|
import './dice';
|
|
|
|
|
import './table';
|
2026-02-26 09:24:26 +08:00
|
|
|
import './md-link';
|
|
|
|
|
|
|
|
|
|
// 导出组件
|
|
|
|
|
export { Article } from './Article';
|
|
|
|
|
export type { ArticleProps } from './Article';
|
2026-02-26 00:17:23 +08:00
|
|
|
|
2026-02-26 00:47:26 +08:00
|
|
|
// 导出类型
|
|
|
|
|
export type { DiceProps } from './dice';
|
2026-02-26 00:17:23 +08:00
|
|
|
export type { TableProps } from './table';
|
2026-02-26 00:47:26 +08:00
|
|
|
|