1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 12:44:20 +00:00
5e-drs/docs/.vuepress/theme/global-components/HomeTableOfContents.vue

23 lines
296 B
Vue
Raw Normal View History

2022-02-21 20:56:20 +01:00
<template>
<div>
{{contents}}
</div>
</template>
<script>
export default {
name: 'HomeTableOfContents',
data () {
return {
contents: null
}
},
mounted () {
console.log(this.$site.themeConfig)
this.contents = this.$site.themeConfig.sidebar
}
}
</script>