index.tsx 347 B

1234567891011
  1. import { initEditor } from "@/modules/editor";
  2. import { defineComponent } from "vue";
  3. export default defineComponent(() => {
  4. const editor = initEditor();
  5. const params = new URLSearchParams(location.hash.split("?")[1]);
  6. editor.actions.initDesign(params.get("id") || "");
  7. return () => <editor.components.Viewport class="!h-100vh" />;
  8. });