AboutView.vue 443 B

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