18 lines
175 B
Vue
18 lines
175 B
Vue
|
<template>
|
||
|
<div class="side-bar">
|
||
|
<toc>
|
||
|
</toc>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
import Toc from './Toc';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Toc,
|
||
|
},
|
||
|
};
|
||
|
</script>
|