Merge pull request #77

* added timestamp to comicstatus.

* added timestamp to comicstatus.
This commit is contained in:
2022-09-19 12:18:46 +01:00
committed by GitHub
parent 01e73cc9b3
commit 2647a0e31e
20 changed files with 463 additions and 304 deletions

View File

@@ -0,0 +1,24 @@
<template>
<the-breadcrumbs :manual_crumbs="this.crumbs" />
<history-table />
</template>
<script>
import TheBreadcrumbs from "@/components/TheBreadcrumbs";
import HistoryTable from "@/components/HistoryTable";
export default {
name: "HistoryView",
components: {HistoryTable, TheBreadcrumbs},
data () {
return {
crumbs: [
{id: 0, selector: '', name: 'Home'},
{id: 1, selector: '', name: 'History'}
]
}},
}
</script>
<style scoped>
</style>