HomeView.vue 308 B

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