tapi/z_ele/src/as-needed.ts
u2nyakim 78cbfb21d5 up.
2025-08-22 10:46:24 +08:00

9 lines
157 B
TypeScript

/** 按需引入(生产环境) */
import type { App, Plugin } from 'vue';
const installer: Plugin = {
install(_app: App) {}
};
export default installer;