index.tsx 427 B

12345678910111213141516
  1. import { initEditor } from "@/modules/editor";
  2. import { DesignComp } from "@/modules/editor/defines/DesignTemp/DesignComp";
  3. import { defineComponent } from "vue";
  4. export default defineComponent(() => {
  5. const editor = initEditor();
  6. editor.actions.initData({
  7. title: "123",
  8. pageStyle: {
  9. backgroundColor: "#fff",
  10. },
  11. content: [],
  12. });
  13. return () => <editor.components.Viewport class="!h-100vh" />;
  14. });