
Security News
Feross on TBPN: Socket's Series C and the State of Software Supply Chain Security
Feross Aboukhadijeh joins TBPN to discuss Socket's $60M Series C, 500%+ ARR growth, AI's impact on open source, and the rise in supply chain attacks.
@git-diff-view/vue
Advanced tools
A high-performance Vue diff view component with GitHub-style UI
npm install @git-diff-view/vue
# or
pnpm add @git-diff-view/vue
# or
yarn add @git-diff-view/vue
<script setup>
import { DiffView, DiffModeEnum } from "@git-diff-view/vue";
import "@git-diff-view/vue/styles/diff-view.css";
const diffData = {
oldFile: { fileName: "old.ts", content: "..." },
newFile: { fileName: "new.ts", content: "..." },
hunks: ["..."]
};
</script>
<template>
<DiffView
:data="diffData"
:diff-view-mode="DiffModeEnum.Split"
diff-view-theme="dark"
:diff-view-highlight="true"
/>
</template>
File Comparison Mode
<script setup>
import { DiffView } from "@git-diff-view/vue";
import { DiffFile, generateDiffFile } from "@git-diff-view/file";
import "@git-diff-view/vue/styles/diff-view.css";
const file = generateDiffFile(
"old.ts", oldContent,
"new.ts", newContent,
"typescript", "typescript"
);
file.initTheme('dark');
file.init();
file.buildSplitDiffLines();
</script>
<template>
<DiffView :diff-file="file" />
</template>
Git Diff Mode
<script setup>
import { DiffView } from "@git-diff-view/vue";
import { DiffFile } from "@git-diff-view/core";
import "@git-diff-view/vue/styles/diff-view.css";
const file = new DiffFile(
oldFileName,
oldContent,
newFileName,
newContent,
hunks,
oldFileLang,
newFileLang
);
file.initTheme('dark');
file.init();
file.buildSplitDiffLines();
</script>
<template>
<DiffView :diff-file="file" />
</template>
<script>
// Default styles with Tailwind (next release will be pure CSS)
import "@git-diff-view/vue/styles/diff-view.css";
// Pure CSS (no Tailwind conflicts)
import "@git-diff-view/vue/styles/diff-view-pure.css";
</script>
| Prop | Type | Description |
|---|---|---|
data | DiffData | Diff data with oldFile, newFile, and hunks |
diffFile | DiffFile | Pre-processed diff file instance |
diffViewMode | Split | Unified | View mode (default: Split) |
diffViewTheme | light | dark | Theme (default: light) |
diffViewHighlight | boolean | Enable syntax highlighting |
diffViewWrap | boolean | Enable line wrapping |
diffViewFontSize | number | Font size in pixels |
diffViewAddWidget | boolean | Enable widget button |
extendData | ExtendData | Additional data per line |
| Slot | Props | Description |
|---|---|---|
widget | { onClose, side, lineNumber } | Custom widget content |
extend | { data } | Custom extend data content |
| Event | Payload | Description |
|---|---|---|
onAddWidgetClick | { side, lineNumber } | Fired when widget button is clicked |
type DiffData = {
oldFile?: {
fileName?: string | null;
fileLang?: string | null;
content?: string | null;
};
newFile?: {
fileName?: string | null;
fileLang?: string | null;
content?: string | null;
};
hunks: string[];
};
Try it online: https://mrwangjusttodo.github.io/git-diff-view
MIT © MrWangJustToDo
FAQs
@git-diff-view/vue
The npm package @git-diff-view/vue receives a total of 11,930 weekly downloads. As such, @git-diff-view/vue popularity was classified as popular.
We found that @git-diff-view/vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Feross Aboukhadijeh joins TBPN to discuss Socket's $60M Series C, 500%+ ARR growth, AI's impact on open source, and the rise in supply chain attacks.

Security News
OSV withdrew 157 OSV malware reports after automated false positives incorrectly flagged trusted npm and PyPI packages, sending bad records into tools that rely on OSV data.

Research
/Security News
TrapDoor crypto stealer hits 36 malicious packages across npm, PyPI, and Crates.io, targeting crypto, DeFi, AI, and security developers.