index.vue 547 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <script>
  2. import AdminLayout from "~/components/layout/adminLayout.vue";
  3. export default {
  4. name: "mangerIndex",
  5. components: {AdminLayout},
  6. data(){
  7. return {
  8. headerMenus:[
  9. {
  10. text: '前往首页',
  11. href: '/',
  12. key: 'toIndex'
  13. }
  14. ],
  15. }
  16. }
  17. }
  18. </script>
  19. <template>
  20. <div class="w-full">
  21. <admin-layout
  22. :logoTitle="'深圳合方圆站点管理'"
  23. :header-menus="headerMenus"
  24. >
  25. test
  26. <div class="abc">
  27. bhh
  28. </div>
  29. </admin-layout>
  30. </div>
  31. </template>
  32. <style scoped>
  33. </style>