createWord

导出 Word 的文档

示例

import { T1, T2, T3, T4, T5, T6, N, NC, NR, Character } from "ynw/script/createWord/wordStyles";
import createWord from "ynw/script/createWord/createWord";
const children = [T1("标题1"), T2("标题2"), T3("标题3"), NC("正文居中对齐"), NR("正文右对齐"), N("正文")];
await createWord({ title: "文件名", children });

创建表格

import { T1 } from "ynw/script/createWord/wordStyles";
import createWord from "ynw/script/createWord/createWord";
import createTable from "@script/createWord/createTable"; // 创建表格

const children = [T1("文章大标题"), createTable({ columns, dataSource })];
await createWord({ title: "文件名", children });