HomeView.vue 445 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="home">
  3. <h2>欢迎使用Prototype Design, 请您根据您的需要设计您的Prototype</h2>
  4. <button @click="goToLogin">GO TO LOGIN</button>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. methods: {
  10. goToLogin() {
  11. this.$router.push('/login');
  12. }
  13. }
  14. };
  15. </script>
  16. <style scoped>
  17. .home {
  18. height: 100vh;
  19. width: 100vw;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. </style>