Closed ccsulzf closed 1 week ago
<vxe-toolbar ref="toolbarRef" custom print refresh zoom>
<template #tools>
<div class="px-2">
<vxe-button circle icon="vxe-icon-fullscreen" @click="test" />
</div>
</template>
</vxe-toolbar>
const test = () => {
const $myRef = myRef.value;
if ($myRef) {
if (!document.fullscreenElement) {
// 进入全屏
$myRef.requestFullscreen?.();
} else {
// 退出全屏
document.exitFullscreen?.();
}
// console.log($table.getTableData());
}
};
自己写一个
这个需求解决了什么问题:
基础表格也可以放大缩小
建议的 API 是什么样的: