mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-10 06:10:05 -06:00
41 lines
565 B
JavaScript
41 lines
565 B
JavaScript
import 'regenerator-runtime/runtime'
|
|
import App from './components/App.vue'
|
|
import store from './store'
|
|
|
|
const appInfo = {
|
|
name: 'Accounts',
|
|
id: 'accounts',
|
|
icon: 'text-vcard',
|
|
isFileEditor: false,
|
|
extensions: []
|
|
}
|
|
|
|
const routes = [
|
|
{
|
|
name: 'accounts',
|
|
path: '/',
|
|
components: {
|
|
app: App
|
|
}
|
|
}
|
|
]
|
|
|
|
const navItems = [
|
|
{
|
|
name: 'Accounts',
|
|
iconMaterial: appInfo.icon,
|
|
route: {
|
|
name: 'accounts',
|
|
path: `/${appInfo.id}/`
|
|
},
|
|
menu: 'apps'
|
|
}
|
|
]
|
|
|
|
export default {
|
|
appInfo,
|
|
routes,
|
|
navItems,
|
|
store
|
|
}
|