1234567891011121314151617181920212223242526 |
- <template>
- <div class="home">
- <h2>欢迎使用Prototype Design, 请您根据您的需要设计您的Prototype</h2>
- <button @click="goToLogin">GO TO LOGIN</button>
- </div>
- </template>
- <script>
- export default {
- methods: {
- goToLogin() {
- this.$router.push('/login');
- }
- }
- };
- </script>
- <style scoped>
- .home {
- height: 100vh;
- width: 100vw;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- </style>
|