1234567891011121314151617181920 |
- <template>
- <div class="home">
- <h2 style="color: white;">欢迎使用Prototype Design, 请您根据您的需要设计您的Prototype</h2>
- <router-link to="/login" style="color: lightgray;">Login</router-link>
- </div>
- </template>
- <script>
- export default {}
- </script>
- <style>
- .home {
- height: 100vh;
- width: 100vw;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- </style>
|