<div class="box" :style="style"></div>
<button type="button" @click.prevent="copy">Copy</button>

将添加的样式复制到剪贴板中。

async copy() {
    let text = `transform: ${this.box.transform};`
    await navigator.clipboard.writeText(text);
}

因为写入剪贴板可能会耗很多时间且是异步的,所以加上 async 和 await 关键字。