mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-03-01 13:36:55 +08:00
25 lines
305 B
Vue
25 lines
305 B
Vue
<template>
|
|
<div class="n-documentation">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
inject: {
|
|
NDocRoot: {
|
|
default: null
|
|
}
|
|
},
|
|
mounted () {
|
|
this.NDocRoot.resetScrollPosition()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.n-documentation {
|
|
padding: 24px 24px 24px 56px;
|
|
}
|
|
</style>
|