mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
623 B
623 B
title, icon, createTime, permalink
| title | icon | createTime | permalink |
|---|---|---|---|
| 代码复制 | ph:code | 2024/03/04 09:59:29 | /guide/features/copy-code/ |
使用
主题默认启用了代码复制功能。支持 一键复制 在 文章中 展示的代码。
默认情况下, 主题会为每一个 代码块 添加一个复制按钮。该按钮仅在桌面端显示。
当鼠标悬停在 代码块 上时,在右上角会出现一个复制按钮。
效果
代码块
const a = 1
export default a
代码组
::: code-tabs @tab foo.js
const a = 1
export default a
@tab bar.js
const b = 1
export default b
:::