You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/web_src/js/features/repo-diff-filetree.ts

11 lines
280 B
TypeScript

import {createApp} from 'vue';
import DiffFileTree from '../components/DiffFileTree.vue';
export function initDiffFileTree() {
const el = document.querySelector('#diff-file-tree');
if (!el) return;
const fileTreeView = createApp(DiffFileTree);
fileTreeView.mount(el);
}