src/shared/util.js/remove. /** * Remove an item from an array */ export function remove(arr, item) { if (arr.length) { const index = arr.indexOf(item) if ...
確定! 回上一頁