官方文档
.capturePage([rect])
rect Rectangle (可选) - 要捕获的页面区域。
返回 Promise - 完成后返回一个NativeImage
在 rect内捕获页面的快照。 省略 rect 将捕获整个可见页面。
async function cap(){
let image = await webviewRef.value.capturePage()
console.log(image)
const appIcon = image.toDataURL()
console.log(appIcon)
}