1234567891011121314151617181920212223 |
- <template>
- <div >
- <div class="left_container">
- <h2>我是跳转的路由</h2>
- </div>
- </div>
- </template>
- <script setup>
-
- </script>
- <style scoped>
- .left_container {
- padding: 15px;
- width: 300px;
- position: relative;
- top: 60px;
- left: 169px;
- z-index: 2018;
- border-radius: 5px;
- box-shadow: 0px 3px 10px rgba(255, 255, 255, 0.1);
- }
- </style>
|