Cut selected text into clipboard on iOS

At first, I meet this problem that cut selected text on ios is not work.

In the end, I solved it. share my solution:

let cutSelectedTextCache = ref("");

// do evaluate cutSelectedTextCache

editorEl.addEventListener('cut', (e) => {
  e.clipboardData.setData("text/plain", cutSelectedTextCache.value);
  e.preventDefault();
});