mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-29 12:44:20 +00:00
23 lines
296 B
Vue
23 lines
296 B
Vue
|
|
<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>
|