Generate http endpoints and add empty vue app entry point.

This commit is contained in:
Benedikt Kulmann
2020-04-21 15:24:27 +02:00
parent 4617e7c6cc
commit 39fa211b5a
28 changed files with 9145 additions and 70 deletions
+41
View File
@@ -0,0 +1,41 @@
import SettingsApp from './components/SettingsApp.vue'
import store from './store'
const appInfo = {
name: 'Settings',
id: 'settings',
icon: 'gear',
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
}