naive-ui/demo/docEntry.vue

64 lines
1.2 KiB
Vue
Raw Normal View History

2020-02-27 18:09:23 +08:00
<template>
<n-nimbus-service-layout
ref="layout"
:padding-body="false"
:items="items"
:sider-style="siderStyle"
:content-style="contentStyle"
2020-05-30 16:13:09 +08:00
:body-themed-style="bodyThemedStyle"
2020-02-27 18:09:23 +08:00
>
<router-view />
2020-03-05 23:01:27 +08:00
<landing-footer style="padding: 32px 204px 16px 56px; text-align: left; font-size: 14px;" />
2020-02-27 18:09:23 +08:00
</n-nimbus-service-layout>
</template>
<script>
2020-03-05 22:31:20 +08:00
import LandingFooter from './documentation/landing/footer'
2020-02-27 18:09:23 +08:00
export default {
2020-03-05 22:31:20 +08:00
components: {
LandingFooter
},
2020-02-27 18:09:23 +08:00
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: 'calc(100vh - 64px)'
},
contentStyle: {
height: 'calc(100vh - 64px)'
2020-05-30 16:13:09 +08:00
},
bodyThemedStyle: {
light: {
backgroundColor: '#FFF'
}
}
2020-02-27 18:09:23 +08:00
}
},
computed: {
items () {
return this.NEntry.items
}
},
methods: {
resetScrollPosition () {
this.$refs.layout.scrollTo(0, 0)
2020-02-27 18:09:23 +08:00
}
}
}
</script>