AboutView.vue 423 B

123456789101112131415161718192021
  1. <template>
  2. <div class="about">
  3. <h1>This is an about page{{ c.count }}{{ c.doubleCount }}</h1>
  4. <el-button @click="c.increment">点击 </el-button>
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import { useCounterStore } from "@/stores/counter"
  9. const c = useCounterStore()
  10. </script>
  11. <style>
  12. @media (min-width: 1024px) {
  13. .about {
  14. min-height: 100vh;
  15. display: flex;
  16. align-items: center;
  17. }
  18. }
  19. </style>