mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-12-19 09:02:50 +00:00
14 lines
405 B
TypeScript
14 lines
405 B
TypeScript
import 'element-plus/dist/index.css';
|
|
import 'highlight.js/styles/github.css';
|
|
|
|
import { defineClientAppEnhance } from '@vuepress/client';
|
|
import ElementPlus from 'element-plus';
|
|
import MagicForm from '@tmagic/form';
|
|
import DemoBlock from './demo-block.vue';
|
|
|
|
export default defineClientAppEnhance(({ app }) => {
|
|
app.use(ElementPlus);
|
|
app.use(MagicForm);
|
|
app.component('demo-block', DemoBlock);
|
|
});
|