2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00
books/ui/routes/index.js

24 lines
446 B
JavaScript
Raw Normal View History

2018-06-27 20:08:27 +05:30
import ListAndForm from '../pages/ListAndForm';
2018-07-13 10:46:15 +05:30
import ListAndPrintView from '../pages/ListAndPrintView';
2018-06-27 20:08:27 +05:30
export default [
{
path: '/list/:doctype',
name: 'List',
component: ListAndForm,
props: true
},
{
path: '/edit/:doctype/:name',
name: 'Form',
component: ListAndForm,
props: true
2018-07-13 10:46:15 +05:30
},
{
path: '/print/:doctype/:name',
name: 'PrintView',
component: ListAndPrintView,
props: true
2018-06-27 20:08:27 +05:30
}
];