Plot Text
About 123 wordsLess than 1 minute
2025-10-08
Overview
Use the <VPPlot> component to display plot text with more flexible control over behavior.
This component is disabled by default and needs to be enabled in the theme configuration.
.vuepress/config.ts
export default defineUserConfig({
theme: plumeTheme({
markdown: {
plot: true,
},
})
})Props
Examples
Input:
- Hover - <VPPlot>Visible on hover</VPPlot>
- Click - <VPPlot trigger="click">Visible on click</VPPlot>Output:
- Hover - Visible on hover
- Click - Visible on click
