15 lines
439 B
TypeScript
15 lines
439 B
TypeScript
import { withInstall } from '../utils';
|
|
import _AddressList from './AddressList';
|
|
|
|
export const AddressList = withInstall(_AddressList);
|
|
export default AddressList;
|
|
export { addressListProps } from './AddressList';
|
|
export type { AddressListProps } from './AddressList';
|
|
export type { AddressListAddress } from './AddressListItem';
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
VanAddressList: typeof AddressList;
|
|
}
|
|
}
|