rebuilded corpus navigation with toc

This commit is contained in:
2020-02-28 16:49:25 +01:00
parent 6c4f38f017
commit 5253db064f
11 changed files with 346 additions and 217 deletions
+21
View File
@@ -0,0 +1,21 @@
<template>
<div id="text">
<h1>{{ textdata.content.title }}</h1>
<div class="tei" v-html="textdata.content.tei" />
</div>
</template>
<script>
export default {
name: 'EdText',
props: {
textdata: Object
},
data: () => ({
})
}
</script>
<style lang="scss" scoped>
</style>