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