6 lines
166 B
TypeScript
6 lines
166 B
TypeScript
|
|
/**
|
||
|
|
* 公共组件统一导出
|
||
|
|
* 在业务中可通过 `import { HelloWorld } from '@/components'` 使用
|
||
|
|
*/
|
||
|
|
export { default as HelloWorld } from './HelloWorld';
|