math.js 376 B

12345678910111213141516171819
  1. // 数学公式组件
  2. // 该组件用于展示数学公式,使用 MathJax 渲染公式内容
  3. import { commonSetProperty } from './common';
  4. export function getFillProperty() {
  5. return {
  6. ...commonSetProperty,
  7. };
  8. }
  9. export function getMathData() {
  10. return {
  11. type: 'math',
  12. title: '公式',
  13. property: getFillProperty(),
  14. math: '', // 公式内容
  15. };
  16. }