mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-26 15:02:52 -05:00
43 lines
615 B
JavaScript
43 lines
615 B
JavaScript
import 'regenerator-runtime/runtime'
|
|
import SettingsApp from './components/SettingsApp.vue'
|
|
import store from './store'
|
|
|
|
const appInfo = {
|
|
name: 'Settings',
|
|
id: 'settings',
|
|
icon: 'info',
|
|
isFileEditor: false,
|
|
extensions: [],
|
|
config: {
|
|
url: 'http://localhost:9190'
|
|
}
|
|
}
|
|
|
|
const routes = [
|
|
{
|
|
name: 'settings',
|
|
path: '/',
|
|
components: {
|
|
app: SettingsApp
|
|
}
|
|
}
|
|
]
|
|
|
|
const navItems = [
|
|
{
|
|
name: 'Settings',
|
|
iconMaterial: appInfo.icon,
|
|
route: {
|
|
name: 'settings',
|
|
path: `/${appInfo.id}/`
|
|
}
|
|
}
|
|
]
|
|
|
|
export default {
|
|
appInfo,
|
|
store,
|
|
routes,
|
|
navItems
|
|
}
|