myHome.vue 440 B

1234567891011121314151617181920212223
  1. <template>
  2. <div >
  3. <div class="left_container">
  4. <h2>我是跳转的路由</h2>
  5. </div>
  6. </div>
  7. </template>
  8. <script setup>
  9. </script>
  10. <style scoped>
  11. .left_container {
  12. padding: 15px;
  13. width: 300px;
  14. position: relative;
  15. top: 60px;
  16. left: 169px;
  17. z-index: 2018;
  18. border-radius: 5px;
  19. box-shadow: 0px 3px 10px rgba(255, 255, 255, 0.1);
  20. }
  21. </style>