UNPKG

tg-map-vue3

Version:

封装 百度地图, Google地图, Here地图(未完成), Maptalks 的Vue3组件库

15 lines (14 loc) 496 B
import { type App } from 'vue'; import type { VueHookName } from './vue-utils'; export interface LifecycleLogOptions { /** @default /^[A-Z]/ 匹配大写字母开头的组件名 */ nameRegex?: RegExp; /** @default true 开启log */ enable?: boolean; /** @default 除 updated, beforeUpdate 外的所有hook */ hookNames?: VueHookName[]; } declare const LifecycleLogPlugin: { install(app: App, options?: LifecycleLogOptions): void; }; export default LifecycleLogPlugin;