import Tabs from ‘@theme/Tabs’;
import TabItem from ‘@theme/TabItem’;
- The VM implements a clipboard API that works like Mozilla’s Clipboard, providing write access to the contents of the system clipboard. The Clipboard API can be used to implement cut, copy, and paste features within a web application.
-
::info
For extra safety, the VM hasisTrusted
as part of the stack. This allows to verify if the action was part of the stack originating from theisTrusted
user’s event. - ::
writeText
- The Clipboard interface’s
writeText()
copies the specified text string to the system clipboard. -
::note
The event requires for the page to be in transient state (explicit user’s click). -
::
param required type description text
required string data to be copied to the clipboard.
Examples
“`jsx
return (
);
“`
“`json
// Copy “HelloWorld!” to clipboard
“`