quisk.ts 276 B

123456789101112
  1. import Edit from "./edit.vue";
  2. import { quiskMountFactory } from "@/helper/mount";
  3. export const addExample = quiskMountFactory(Edit, {
  4. title: "新增案件",
  5. width: 750,
  6. });
  7. export const editExample = quiskMountFactory(Edit, {
  8. title: "案件信息",
  9. width: 750,
  10. });