debian-mirror-gitlab/app/assets/javascripts/work_items/router/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
382 B
JavaScript
Raw Normal View History

2022-07-16 23:28:13 +05:30
import { GlToast } from '@gitlab/ui';
2021-12-11 22:18:48 +05:30
import Vue from 'vue';
import VueRouter from 'vue-router';
import { joinPaths } from '~/lib/utils/url_utility';
import { routes } from './routes';
2022-07-16 23:28:13 +05:30
Vue.use(GlToast);
2021-12-11 22:18:48 +05:30
Vue.use(VueRouter);
export function createRouter(fullPath) {
return new VueRouter({
routes,
mode: 'history',
base: joinPaths(fullPath, '-', 'work_items'),
});
}