7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
import type { App } from "vue";
|
|
import { FocusNext } from "dolphin-components";
|
|
|
|
export const loadPlugins = (app: App) => {
|
|
app.use(FocusNext);
|
|
};
|