| 123456789101112131415161718192021 |
- <template>
- <div class="sub-menu-1-view">
- <h1>子菜单</h1>
- <p>这是子菜单的内容页面</p>
- </div>
- </template>
- <script setup>
- </script>
- <style scoped>
- .sub-menu-1-view {
- padding: 2rem;
- }
- h1 {
- font-size: 2rem;
- font-weight: bold;
- margin-bottom: 1rem;
- }
- </style>
|