home.vue 390 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="home">
  3. 首页
  4. </div>
  5. </template>
  6. <script lang="ts">
  7. import { defineComponent } from 'vue';
  8. export default defineComponent({
  9. name: 'home',
  10. components: {},
  11. setup() {
  12. return {};
  13. },
  14. });
  15. </script>
  16. <style lang="less">
  17. .home {
  18. .withus {
  19. cursor: pointer;
  20. margin-top: 35px;
  21. padding-bottom: 25px;
  22. }
  23. }
  24. </style>