15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
import { frontendURL } from '../../helper/URLHelper';
|
|
|
|
const SearchView = () => import('./components/SearchView.vue');
|
|
|
|
export const routes = [
|
|
{
|
|
path: frontendURL('accounts/:accountId/search'),
|
|
name: 'search',
|
|
meta: {
|
|
permissions: ['administrator', 'agent'],
|
|
},
|
|
component: SearchView,
|
|
},
|
|
];
|