2021-10-25 20:19:04 +08:00
|
|
|
<template>
|
|
|
|
<nav class="one-toc">
|
|
|
|
<veui-anchor
|
2021-10-26 16:40:44 +08:00
|
|
|
:items="flattenItems"
|
2021-10-25 20:19:04 +08:00
|
|
|
sticky
|
|
|
|
/>
|
|
|
|
</nav>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { Anchor } from 'veui'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'one-toc',
|
|
|
|
components: {
|
|
|
|
'veui-anchor': Anchor
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
items: Array
|
2021-10-26 16:40:44 +08:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
flattenItems () {
|
|
|
|
return this.items.flatMap(({ children }) => children || [])
|
|
|
|
}
|
2021-10-25 20:19:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.one-toc
|
|
|
|
float right
|
|
|
|
</style>
|