mirror of
https://github.com/go-gitea/gitea
synced 2025-02-01 20:44:28 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
|
import {createApp} from 'vue';
|
||
|
import DashboardRepoList from '../components/DashboardRepoList.vue';
|
||
|
|
||
|
export function initDashboardRepoList() {
|
||
|
const el = document.querySelector('#dashboard-repo-list');
|
||
|
if (el) {
|
||
|
createApp(DashboardRepoList).mount(el);
|
||
|
}
|
||
|
}
|