AboutView.vue 359 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="about">
  3. <h1>This is an about page</h1>
  4. </div>
  5. </template>
  6. <script>
  7. import { defineComponent } from 'vue'
  8. export default defineComponent({
  9. mounted() {
  10. this.$SzyxPush.init()
  11. }
  12. })
  13. </script>
  14. <style>
  15. @media (min-width: 1024px) {
  16. .about {
  17. min-height: 100vh;
  18. display: flex;
  19. align-items: center;
  20. }
  21. }
  22. </style>