mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-11-27 04:09:51 +08:00
64 lines
1.1 KiB
Vue
64 lines
1.1 KiB
Vue
<template>
|
|
<n-nimbus-service-layout
|
|
ref="layout"
|
|
:padding-body="false"
|
|
:items="items"
|
|
:sider-style="siderStyle"
|
|
:content-style="contentStyle"
|
|
:body-themed-style="bodyThemedStyle"
|
|
>
|
|
<router-view />
|
|
<landing-footer style="padding: 32px 204px 16px 56px; text-align: left; font-size: 14px;" />
|
|
</n-nimbus-service-layout>
|
|
</template>
|
|
|
|
<script>
|
|
import LandingFooter from './documentation/landing/Footer'
|
|
|
|
export default {
|
|
components: {
|
|
LandingFooter
|
|
},
|
|
provide () {
|
|
return {
|
|
NDocRoot: this
|
|
}
|
|
},
|
|
inject: {
|
|
NEntry: {
|
|
default: null
|
|
}
|
|
},
|
|
beforeRouteUpdate (to, from, next) {
|
|
this.memorizedPath = from ? from.path : null
|
|
next()
|
|
},
|
|
data () {
|
|
return {
|
|
memorizedPath: null,
|
|
siderStyle: {
|
|
height: '100%'
|
|
},
|
|
contentStyle: {
|
|
height: '100%'
|
|
},
|
|
bodyThemedStyle: {
|
|
light: {
|
|
backgroundColor: '#FFF'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
items () {
|
|
return this.NEntry.items
|
|
}
|
|
},
|
|
methods: {
|
|
resetScrollPosition () {
|
|
this.$refs.layout.scrollTo(0, 0)
|
|
}
|
|
}
|
|
}
|
|
</script>
|