123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div class="docs-app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- components: {},
- data () {
- return {
- cashViews: [],
- links: [
- {
- to: '/',
- text: '首页'
- },
- {
- to: '/content/12',
- text: '内容页'
- },
- {
- to: '/search',
- text: '列表页'
- },
- {
- to: '/user/docs',
- text: '收藏页'
- },
- {
- to: '/user/collections',
- text: '收藏页2'
- }
- ]
- }
- }
- }
- </script>
- <style lang="scss">
- @import "~@/assets/style/reset-ele.scss";
- .page--docs--index.bg-white {
- background-color: #fff;
- .page-container {
- background-color: #fff;
- }
- }
- </style>
|