1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-30 15:20:01 +00:00

made it possible to list, rename, delete and select an application.

This commit is contained in:
Bram Wiepjes 2019-10-13 08:58:48 +00:00
parent 6d97ef428a
commit 57b5b4e237
40 changed files with 1513 additions and 174 deletions
web-frontend/modules/database

View file

@ -0,0 +1,14 @@
import path from 'path'
export const databaseRoutes = [
{
name: 'application-database',
path: '/database/:id',
component: path.resolve(__dirname, 'pages/Database.vue'),
props(route) {
const props = { ...route.params }
props.id = parseInt(props.id)
return props
}
}
]