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