HomeView.vue 413 B

1234567891011121314151617181920
  1. <template>
  2. <div class="home">
  3. <h2 style="color: white;">欢迎使用Prototype Design, 请您根据您的需要设计您的Prototype</h2>
  4. <router-link to="/login" style="color: lightgray;">Login</router-link>
  5. </div>
  6. </template>
  7. <script>
  8. export default {}
  9. </script>
  10. <style>
  11. .home {
  12. height: 100vh;
  13. width: 100vw;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. </style>