| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <script>
- import AdminLayout from "~/components/layout/adminLayout.vue";
- export default {
- name: "mangerIndex",
- components: {AdminLayout},
- data(){
- return {
- headerMenus:[
- {
- text: '前往首页',
- href: '/',
- key: 'toIndex'
- }
- ],
- }
- }
- }
- </script>
- <template>
- <div class="w-full">
- <admin-layout
- :logoTitle="'深圳合方圆站点管理'"
- :header-menus="headerMenus"
- >
- test
- <div class="abc">
- bhh
- </div>
- </admin-layout>
- </div>
- </template>
- <style scoped>
- </style>
|