Implement event logs component.

It can show:

 - all events (this could get slow);
 - a single sequence;
 - a set of sequences;
 - a single date;
 - a range between two dates.

It does not (yet) do pagination and filtering is local only.
This commit is contained in:
D. Berge
2020-08-12 15:15:44 +02:00
parent 6fa39eb3c7
commit 4de0684919
3 changed files with 190 additions and 6 deletions

View File

@@ -96,7 +96,12 @@ Vue.use(VueRouter)
},
{
path: "log",
component: Log
component: Log,
children: [
{ path: "sequence/:sequence", name: "logBySequence" },
{ path: "date/:date0", name: "logByDate" },
{ path: "date/:date0/:date1", name: "logByDates" }
]
},
{
path: "map",