Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你知道一个组件可以让你在 Svelte JS 中做到这一点吗?
例如,像 ReactToPrint,一个打印 React 组件。
如果要打印屏幕上的内容,可以添加 HTML 按钮并调用 JS 函数来执行此代码
window.print()
我希望这是你需要的。
使用此代码,您可以打印所有窗口
你可以像这样在你的苗条中插入一个按钮。
<button on:click={() => window.print() }>Click to print</button>