手把手帶你利用vue3.x繪製流程圖

2022-06-08 14:14:20
利用vue3.x怎麼繪製流程圖?下面本篇文章給大家分享基於 vue3.x 的流程圖繪製方法,希望對大家有所幫助!

GitHub-workflow

https://github.com/554246839/component-test/tree/dev/src/components/workflow

這裡主要是針對於工作流場景的流程圖繪製及實現方式。(學習視訊分享:)

下面是效果圖:

1.png

整體結構佈局:

2.png

需要實現的功能列表:

  • 節點與連線線的可設定
  • 節點的拖拽與渲染及連線線的繪製
  • 節點與連線線的選擇
  • 節點的樣式調整
  • 節點移動時的吸附
  • 復原和恢復

節點與連線線的可設定

  • 節點設定資訊
[
  {
    'id': '', // 每次渲染會生成一個新的id
    'name': 'start', // 節點名稱,也就是型別
    'label': '開始', // 左側列表節點的名稱
    'displayName': '開始', // 渲染節點的顯示名稱(可修改)
    'className': 'icon-circle start', // 節點在渲染時候的class,可用於自定義節點的樣式
    'attr': { // 節點的屬性
      'x': 0, // 節點相對於畫布的 x 位置
      'y': 0, // 節點相對於畫布的 y 位置
      'w': 70, // 節點的初始寬度
      'h': 70  // 節點的初始高度
    },
    'next': [], // 節點出度的線
    'props': [] // 節點可設定的業務屬性
  },
  // ...
]
  • 連線線設定資訊
// next
[
  {
    // 連線線的id
    'id': 'ee1c5fa3-f822-40f1-98a1-f76db6a2362b',
    // 連線線的結束節點id
    'targetComponentId': 'fa7fbbfa-fc43-4ac8-8911-451d0098d0cb',
    // 連線線在起始節點的方向
    'directionStart': 'right',
    // 連線線在結束節點的方向
    'directionEnd': 'left',
    // 線的型別(直線、折線、曲線)
    'lineType': 'straight',
    // 顯示在連線線中點的標識資訊
    'extra': '',
    // 連線線在起始節點的id
    'componentId': 'fde2a040-3795-4443-a57b-af412d06c023'
  },
  // ...
]
  • 節點的屬性設定結構
// props
[
  {
    // 表單的欄位
    name: 'displayName',
    // 表單的標籤
    label: '顯示名稱',
    // 欄位的值
    value: '旅客運輸',
    // 編輯的型別
    type: 'input',
    // 屬性的必填欄位
    required: true,
    // 表單元件的其它屬性
    props: {
        placeholder: 'xxx'
    }
  },
  // ...
]

對於下拉選擇的資料,如果下拉的資料非常多,那麼設定儲存的資料量也會很大,所以可以把所有的下拉資料統一管理,在獲取左側的設定節點的資訊時,將所有的下拉資料提取出來,以 props 的 name 值為 key 儲存起來,在用的時候用 props.name 來取對應的下拉資料。

另外還需要設定連線線的屬性,相對於節點的屬性,每一個節點的屬性都有可能不一樣,但是連線線在沒有節點的時候是沒有的,所以我們要先準備好連線線的屬性,在連線線生成的時候,在加到連線線的屬性裡去。當然我們可以把連線線的屬性設定為一樣的,也可以根據節點的不同來設定不同連線線的屬性。

最後使用的方式:

<template>
  <workflow
    ref="workflowRef"
    @component-change="getActiveComponent"
    @line-change="getActiveLine"
    main-height="calc(100vh - 160px)">
  </workflow>
</template>


<script setup>
import { ref } from 'vue'
import Workflow from '@/components/workflow'
import { commonRequest } from '@/utils/common'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useRoute } from 'vue-router'

const route = useRoute()

const processId = route.query.processId // || 'testca08c433c34046e4bb2a8d3ce3ebc'
const processType = route.query.processType

// 切換的當前節點
const getActiveComponent = (component: Record<string, any>) => {
  console.log('active component', component)
}

// 切換的當前連線線
const getActiveLine = (line: Record<string, any>) => {
  console.log('active line', line)
}

const workflowRef = ref<InstanceType<typeof Workflow>>()

// 獲取設定的節點列表
const getConfig = () => {
  commonRequest(`/workflow/getWorkflowConfig?processType=${processType}`).then((res: Record<string, any>) => {
    // 需要把所有的屬性根據name轉換成 key - value 形式
    const props: Record<string, any> = {}
    transferOptions(res.result.nodes, props)
    // 設定左側設定的節點資料
    workflowRef.value?.setConfig(res.result)
    getData(props)
  })
}
// 獲取之前已經設定好的資料
const getData = (props: Record<string, any>) => {
  commonRequest(`/workflow/getWfProcess/${processId}`).then((res: Record<string, any>) => {
    // 調整屬性,這裡是為了當設定列表的節點或者屬性有更新,從而更新已設定的節點的屬性
    adjustProps(props, res.result.processJson)
    // 設定已設定好的資料,並渲染
    workflowRef.value?.setData(res.result.processJson, res.result.type || 'add')
  })
}

const init = () => {
  if (!processId) {
    ElMessageBox.alert('當前沒有流程id')
    return
  }
  getConfig()
}
init()

const transferOptions = (nodes: Record<string, any>[], props: Record<string, any>) => {
  nodes?.forEach((node: Record<string, any>) => {
    props[node.name] = node.props
  })
}

const adjustProps = (props: Record<string, any>, nodes: Record<string, any>[]) => {
  nodes.forEach((node: Record<string, any>) => {
    const oldProp: Record<string, any>[] = node.props
    const res = transferKV(oldProp)
    node.props = JSON.parse(JSON.stringify(props[node.name]))
    node.props.forEach((prop: Record<string, any>) => {
      prop.value = res[prop.name]
    })
  })
}

const transferKV = (props: Record<string, any>[]) => {
  const res: Record<string, any> = {}
  props.forEach((prop: Record<string, any>) => {
    res[prop.name] = prop.value
  })
  return res
}
</script>

節點的拖拽與渲染及連線線的繪製

關於節點的拖拽就不多說了,就是 drag 相關的用法,主要是渲染區域的節點和連線線的設計。

這裡的渲染區域的思路是:以 canvas 元素作為畫布背景,節點是以 div 的方式渲染拖拽進去的節點,拖拽的位置將是以 canvas 的相對位置來移動,大概的結構如下:

<template>
    <!-- 渲染區域的祖先元素 -->
    <div>
        <!-- canvas 畫布,絕對於父級元素定位, inset: 0; -->
        <canvas></canvas>
        <!-- 節點列表渲染的父級元素,絕對於父級元素定位, inset: 0; -->
        <div>
            <!-- 節點1,絕對於父級元素定位 -->
            <div></div>
            <!-- 節點2,絕對於父級元素定位 -->
            <div></div>
            <!-- 節點3,絕對於父級元素定位 -->
            <div></div>
            <!-- 節點4,絕對於父級元素定位 -->
            <div></div>
        </div>
    </div>
</template>

而連線線的繪製是根據 next 欄位的資訊,查詢到 targetComponentId 元件的位置,然後在canvas上做兩點間的 線條繪製。

連結的型別分為3種: 直線,折線,曲線

  • 直線

直線的繪製最為簡單,取兩個點連線就行。

// 繪製直線
const drawStraightLine = (
  ctx: CanvasRenderingContext2D, 
  points: [number, number][], 
  highlight?: boolean
) => {
  ctx.beginPath()
  ctx.moveTo(points[0][0], points[0][1])
  ctx.lineTo(points[1][0], points[1][1])
  // 是否是當前選中的連線線,當前連線線高亮
  shadowLine(ctx, highlight)
  ctx.stroke()
  ctx.restore()
  ctx.closePath()
}

3.gif

  • 折線

折線的方式比較複雜,因為折線需要儘可能的不要把連線線和節點重合,所以它要判斷每一種連線線的場景,還有兩個節點的寬度和高度也需要考慮計算。如下:

4.gif

起始節點有四個方向,目標節點也有四個方向,還有目標節點相對於起始節點有四個象限,所以嚴格來說,總共有 4 * 4 * 4 = 64 種場景。這些場景中的折線點也不一樣,最多的有 4 次, 最少的折 0 次,單求出這 64 種座標點就用了 700 行程式碼。

5.png

最後的繪製方法與直線一樣:

// 繪製折線
const drawBrokenLine = ({ ctx, points }: WF.DrawLineType, highlight?: boolean) => {
  ctx.beginPath()
  ctx.moveTo(points[0][0], points[0][1])
  for (let i = 1; i < points.length; i++) {
    ctx.lineTo(points[i][0], points[i][1])
  }
  shadowLine(ctx, highlight)
  ctx.stroke()
  ctx.restore()
  ctx.closePath()
}
  • 曲線

曲線相對於折線來說,思路會簡單很多,不需要考慮折線這麼多場景。

6 (1).gif

這裡的折線是用三階的貝塞爾曲線來繪製的,固定的取四個點,兩個起止點,兩個控制點,其中兩個起止點是固定的,我們只需要求出兩個控制點的座標即可。這裡程式碼不多,可以直接貼出來:

/**
 * Description: 計算三階貝塞爾曲線的座標
 */
import WF from '../type'

const coeff = 0.5
export default function calcBezierPoints({ startDire, startx, starty, destDire, destx, desty }: WF.CalcBezierType,
  points: [number, number][]) {

  const p = Math.max(Math.abs(destx - startx), Math.abs(desty - starty)) * coeff
  switch (startDire) {
    case 'down':
      points.push([startx, starty + p])
      break
    case 'up':
      points.push([startx, starty - p])
      break
    case 'left':
      points.push([startx - p, starty])
      break
    case 'right':
      points.push([startx + p, starty])
      break
    // no default
  }
  switch (destDire) {
    case 'down':
      points.push([destx, desty + p])
      break
    case 'up':
      points.push([destx, desty - p])
      break
    case 'left':
      points.push([destx - p, desty])
      break
    case 'right':
      points.push([destx + p, desty])
      break
    // no default
  }
}

簡單一點來說,第一個控制點是根據起始點來算的,第二個控制點是跟根據結束點來算的。算的方式是根據當前點相對於節點的方向,繼續往前算一段距離,而這段距離是根據起止兩個點的最大相對距離的一半(可能有點繞...)。

繪製方法:

// 繪製貝塞爾曲線
const drawBezier = ({ ctx, points }: WF.DrawLineType, highlight?: boolean) => {
  ctx.beginPath()
  ctx.moveTo(points[0][0], points[0][1])
  ctx.bezierCurveTo(
    points[1][0], points[1][1], points[2][0], points[2][1], points[3][0], points[3][1]
  )
  shadowLine(ctx, highlight)
  ctx.stroke()
  ctx.restore()
  ctx.globalCompositeOperation = 'source-over'    //目標影象上顯示源影象
}

節點與連線線的選擇

節點是用 div 來渲染的,所以節點的選擇可以忽略,然後就是連線點的選擇,首先第一點是滑鼠在移動的時候都要判斷滑鼠的當前位置下面是否有連線線,所以這裡就有 3 種判斷方法,呃... 嚴格來說是兩種,因為折線是多條直線,所以是按直線的判斷方法來。

// 判斷當前滑鼠位置是否有線
export const isAboveLine = (offsetX: number, offsetY: number, points: WF.LineInfo[]) => {
  for (let i = points.length - 1; i >= 0; --i) {
    const innerPonints = points[i].points
    let pre: [number, number], cur: [number, number]
    // 非曲線判斷方法
    if (points[i].type !== 'bezier') {
      for (let j = 1; j < innerPonints.length; j++) {
        pre = innerPonints[j - 1]
        cur = innerPonints[j]
        if (getDistance([offsetX, offsetY], pre, cur) < 20) {
          return points[i]
        }
      }
    } else {
      // 先用 x 求出對應的 t,用 t 求相應位置的 y,再比較得出的 y 與 offsetY 之間的差值
      const tsx = getBezierT(innerPonints[0][0], innerPonints[1][0], innerPonints[2][0], innerPonints[3][0], offsetX)
      for (let x = 0; x < 3; x++) {
        if (tsx[x] <= 1 && tsx[x] >= 0) {
          const ny = getThreeBezierPoint(tsx[x], innerPonints[0], innerPonints[1], innerPonints[2], innerPonints[3])
          if (Math.abs(ny[1] - offsetY) < 8) {
            return points[i]
          }
        }
      }
      // 如果上述沒有結果,則用 y 求出對應的 t,再用 t 求出對應的 x,與 offsetX 進行匹配
      const tsy = getBezierT(innerPonints[0][1], innerPonints[1][1], innerPonints[2][1], innerPonints[3][1], offsetY)
      for (let y = 0; y < 3; y++) {
        if (tsy[y] <= 1 && tsy[y] >= 0) {
          const nx = getThreeBezierPoint(tsy[y], innerPonints[0], innerPonints[1], innerPonints[2], innerPonints[3])
          if (Math.abs(nx[0] - offsetX) < 8) {
            return points[i]
          }
        }
      }
    }
  }

  return false
}

直線的判斷方法是點到線段的距離:

/**
 * 求點到線段的距離
 * @param {number} pt 直線外的點
 * @param {number} p 直線內的點1
 * @param {number} q 直線內的點2
 * @returns {number} 距離
 */
function getDistance(pt: [number, number], p: [number, number], q: [number, number]) {
  const pqx = q[0] - p[0]
  const pqy = q[1] - p[1]
  let dx = pt[0] - p[0]
  let dy = pt[1] - p[1]
  const d = pqx * pqx + pqy * pqy   // qp線段長度的平方
  let t = pqx * dx + pqy * dy     // p pt向量 點積 pq 向量(p相當於A點,q相當於B點,pt相當於P點)
  if (d > 0) {  // 除數不能為0; 如果為零 t應該也為零。下面計算結果仍然成立。                   
    t /= d      // 此時t 相當於 上述推導中的 r。
  }
  if (t < 0) {  // 當t(r)< 0時,最短距離即為 pt點 和 p點(A點和P點)之間的距離。
    t = 0
  } else if (t > 1) { // 當t(r)> 1時,最短距離即為 pt點 和 q點(B點和P點)之間的距離。
    t = 1
  }

  // t = 0,計算 pt點 和 p點的距離; t = 1, 計算 pt點 和 q點 的距離; 否則計算 pt點 和 投影點 的距離。
  dx = p[0] + t * pqx - pt[0]
  dy = p[1] + t * pqy - pt[1]

  return dx * dx + dy * dy
}

關於曲線的判斷方法比較複雜,這裡就不多介紹, 想了解的可以去看這篇:如何判斷一個座標點是否在三階貝塞爾曲線附近

連線線還有一個功能就是雙擊連線線後可以編輯這條連線線的備註資訊。這個備註資訊的位置是在當前連線線的中心點位置。所以我們需要求出中心點,這個相對簡單。

// 獲取一條直線的中點座標
const getStraightLineCenterPoint = ([[x1, y1], [x2, y2]]: [number, number][]): [number, number] => {
  return [(x1 + x2) / 2, (y1 + y2) / 2]
}

// 獲取一條折線的中點座標
const getBrokenCenterPoint = (points: [number, number][]): [number, number] => {
  const lineDistancehalf = getLineDistance(points) >> 1

  let distanceSum = 0, pre = 0, tp: [number, number][] = [], distance = 0

  for (let i = 1; i < points.length; i++) {
    pre = getTwoPointDistance(points[i - 1], points[i])
    if (distanceSum + pre > lineDistancehalf) {
      tp = [points[i - 1], points[i]]
      distance = lineDistancehalf - distanceSum
      break
    }
    distanceSum += pre
  }

  if (!tp.length) {
    return [0, 0]
  }

  let x = tp[0][0], y = tp[0][1]

  if (tp[0][0] === tp[1][0]) {
    if (tp[0][1] > tp[1][1]) {
      y -= distance
    } else {
      y += distance
    }
  } else {
    if (tp[0][0] > tp[1][0]) {
      x -= distance
    } else {
      x += distance
    }
  }

  return [x, y]
}

曲線的中心點位置,可以直接拿三階貝塞爾曲線公式求出

// 獲取三階貝塞爾曲線的中點座標
const getBezierCenterPoint = (points: [number, number][]) => {
  return getThreeBezierPoint(
    0.5, points[0], points[1], points[2], points[3]
  )
}

/**
 * @desc 獲取三階貝塞爾曲線的線上座標
 * @param {number} t 當前百分比
 * @param {Array} p1 起點座標
 * @param {Array} p2 終點座標
 * @param {Array} cp1 控制點1
 * @param {Array} cp2 控制點2
 */
export const getThreeBezierPoint = (
  t: number,
  p1: [number, number],
  cp1: [number, number],
  cp2: [number, number],
  p2: [number, number]
): [number, number] => {
  const [x1, y1] = p1
  const [x2, y2] = p2
  const [cx1, cy1] = cp1
  const [cx2, cy2] = cp2
  const x =
    x1 * (1 - t) * (1 - t) * (1 - t) +
    3 * cx1 * t * (1 - t) * (1 - t) +
    3 * cx2 * t * t * (1 - t) +
    x2 * t * t * t
  const y =
    y1 * (1 - t) * (1 - t) * (1 - t) +
    3 * cy1 * t * (1 - t) * (1 - t) +
    3 * cy2 * t * t * (1 - t) +
    y2 * t * t * t
  return [x | 0, y | 0]
}

在算出每一條的中心點位置後,在目標位置新增備註資訊即可:

7.gif

節點的樣式調整

節點的樣式調整主要是位置及大小,而這些屬性就是節點裡面的 attr,在相應的事件下根據滑鼠移動的方向及位置,來調整節點的樣式。

8 (1).gif

還有批次操作也是同樣,不過批次操作是要先計算出哪些節點的範圍。

// 獲取範圍選中內的元件
export const getSelectedComponent = (componentList: WF.ComponentType[], areaPosi: WF.Attr) => {
  let selectedArea: WF.Attr | null = null
  let minx = Infinity, miny = Infinity, maxx = -Infinity, maxy = -Infinity
  const selectedComponents = componentList.filter((component: WF.ComponentType) => {

    const res = areaPosi.x <= component.attr.x &&
      areaPosi.y <= component.attr.y &&
      areaPosi.x + areaPosi.w >= component.attr.x + component.attr.w &&
      areaPosi.y + areaPosi.h >= component.attr.y + component.attr.h

    if (res) {
      minx = Math.min(minx, component.attr.x)
      miny = Math.min(miny, component.attr.y)
      maxx = Math.max(maxx, component.attr.x + component.attr.w)
      maxy = Math.max(maxy, component.attr.y + component.attr.h)
    }
    return res
  })

  if (selectedComponents.length) {
    selectedArea = {
      x: minx,
      y: miny,
      w: maxx - minx,
      h: maxy - miny
    }
    return {
      selectedArea, selectedComponents
    }
  }
  return null
}

9.gif

這個有個小功能沒有做,就是在批次調整大小的時候,節點間的相對距離應該是不動的,這裡忽略了。

節點移動時的吸附

這裡的吸附功能其實是做了一個簡單版的,就是 x 和 y 軸都只有一條校準線,且校準的優先順序是從左至右,從上至下。

10.gif

這裡吸附的標準是節點的 6 個點:X 軸的左中右,Y 軸的上中下,當前節點在移動的時候,會用當前節點的 6 個點,一一去與其它節點的 6 個點做比較,在誤差正負 2px 的情況,自動更新為0,即自定對齊。

因為移動當前節點時候,其它的節點是不動的,所以這裡是做了一步預處理,即在滑鼠按下去的時候,把其它的節點的 6 個點都線算出來,用 Set 結構儲存,在移動的過程的比較中,計算量會相對較少。

// 計算其它節點的所有點位置
export const clearupPostions = (componentList: WF.ComponentType[], currId: string) => {
  // x 座標集合
  const coordx = new Set<number>()
  // y 座標集合
  const coordy = new Set<number>()

  componentList.forEach((component: WF.ComponentType) => {
    if (component.id === currId) {
      return
    }
    const { x, y, w, h } = component.attr
    coordx.add(x)
    coordx.add(x + (w >> 1))
    coordx.add(x + w)
    coordy.add(y)
    coordy.add(y + (h >> 1))
    coordy.add(y + h)
  })

  return [coordx, coordy]
}

判讀是否有可吸附的點

// 可吸附範圍
const ADSORBRANGE = 2
// 查詢是否有可吸附座標
const hasAdsorbable = (
  coords: Set<number>[], x: number, y: number, w: number, h: number
) => {
  // x, y, w, h, w/2, h/2
  const coord: (number | null)[] = [null, null, null, null, null, null]
  // 查詢 x 座標
  for (let i = 0; i <= ADSORBRANGE; i++) {
    if (coords[0].has(x + i)) {
      coord[0] = i
      break
    }
    if (coords[0].has(x - i)) {
      coord[0] = -i
      break
    }
  }

  // 查詢 y 座標
  for (let i = 0; i <= ADSORBRANGE; i++) {
    if (coords[1].has(y + i)) {
      coord[1] = i
      break
    }
    if (coords[1].has(y - i)) {
      coord[1] = -i
      break
    }
  }

  // 查詢 x + w 座標
  for (let i = 0; i <= ADSORBRANGE; i++) {
    if (coords[0].has(x + w + i)) {
      coord[2] = i
      break
    }
    if (coords[0].has(x + w - i)) {
      coord[2] = -i
      break
    }
  }

  // 查詢 y + h 座標
  for (let i = 0; i <= ADSORBRANGE; i++) {
    if (coords[1].has(y + h + i)) {
      coord[3] = i
      break
    }
    if (coords[1].has(y + h - i)) {
      coord[3] = -i
      break
    }
  }

  // 查詢 x + w/2 座標
  for (let i = 0; i <= ADSORBRANGE; i++) {
    if (coords[0].has(x + (w >> 1) + i)) {
      coord[4] = i
      break
    }
    if (coords[0].has(x + (w >> 1) - i)) {
      coord[4] = -i
      break
    }
  }

  // 查詢 y + h/2 座標
  for (let i = 0; i <= ADSORBRANGE; i++) {
    if (coords[1].has(y + (h >> 1) + i)) {
      coord[5] = i
      break
    }
    if (coords[1].has(y + (h >> 1) - i)) {
      coord[5] = -i
      break
    }
  }

  return coord
}

最後更新狀態。

// 獲取修正後的 x, y,還有吸附線的狀態
export const getAdsordXY = (
  coords: Set<number>[], x: number, y: number, w: number, h: number
) => {
  const vals = hasAdsorbable(
    coords, x, y, w, h
  )

  let linex = null
  let liney = null

  if (vals[0] !== null) { // x
    x += vals[0]
    linex = x
  } else if (vals[2] !== null) { // x + w
    x += vals[2]
    linex = x + w
  } else if (vals[4] !== null) { // x + w/2
    x += vals[4]
    linex = x + (w >> 1)
  }

  if (vals[1] !== null) { // y
    y += vals[1]
    liney = y
  } else if (vals[3] !== null) { // y + h
    y += vals[3]
    liney = y + h
  } else if (vals[5] !== null) { // y + h/2
    y += vals[5]
    liney = y + (h >> 1)
  }

  return {
    x, y, linex, liney
  }
}

復原和恢復

復原和恢復的功能是比較簡單的,其實就是用棧來儲存每一次需要儲存的設定結構,就是要考慮哪些操作是可以復原和恢復的,就是像節點移動,節點的新增和刪除,連線線的連線,連線線的備註新增和編輯等等,在相關的操作下面入棧即可。

// 復原和恢復操作
const cacheComponentList = ref<WF.ComponentType[][]>([])
const currentComponentIndex = ref(-1)
// 復原
const undo = () => {
  componentRenderList.value = JSON.parse(JSON.stringify(cacheComponentList.value[--currentComponentIndex.value]))
  // 更新檢視
  updateCanvas(true)
  cancelSelected()
}
// 恢復
const redo = () => {
  componentRenderList.value = JSON.parse(JSON.stringify(cacheComponentList.value[++currentComponentIndex.value]))
  // 更新檢視
  updateCanvas(true)
  cancelSelected()
}
// 快取入棧
const chacheStack = () => {
  if (cacheComponentList.value.length - 1 > currentComponentIndex.value) {
    cacheComponentList.value.length = currentComponentIndex.value + 1
  }
  cacheComponentList.value.push(JSON.parse(JSON.stringify(componentRenderList.value)))
  currentComponentIndex.value++
}

11.gif

最後

這裡主要的已經差不多都寫了,其實最紅還有一個挺有用的功能還沒有做。就是改變已經繪製的連線線的起止點。

這裡的思路是:先選中需要改變起止點的連線線,然後把滑鼠移動到起止點的位置,將它從已經繪製的狀態改為正在繪製的狀態,然後再選擇它的開始位置或者結束位置。這個後面看情況吧,有空就加上。

(學習視訊分享:、)

以上就是手把手帶你利用vue3.x繪製流程圖的詳細內容,更多請關注TW511.COM其它相關文章!