Files
lc_frontend/src/plugins/lowDesagn/index.ts
2025-10-17 10:31:13 +08:00

10 lines
230 B
TypeScript

import type { App } from 'vue'
import Sortable from 'sortablejs';
import AvueUeditor from 'avue-plugin-ueditor'
window['Sortable'] = Sortable
export const setupLowDesagn = async (app: App<Element>) => {
app.use(AvueUeditor)
}