guide.vue 728 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="guide-container">
  3. <!-- <img src="/src/assets/image/gsgj.jpg" alt=""> -->
  4. <img src="/src/assets/image/saomiao.jpg" alt="">
  5. <div class="guide-container-text">请长按图片关注</div>
  6. </div>
  7. </template>
  8. <script setup>
  9. import { onMounted } from "vue";
  10. onMounted(() => {
  11. // window.location.href = 'https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg3MjExMjA4NA==&scene=126#wechat_redirect'
  12. })
  13. </script>
  14. <style scoped lang="scss">
  15. .guide-container {
  16. width: 100%;
  17. display: flex;
  18. padding-top: 10vh;
  19. align-items: center;
  20. flex-direction: column;
  21. .guide-container-text {
  22. font-size: 20px;
  23. margin-top: 20px;
  24. color: #999;
  25. }
  26. img {
  27. width: 50%;
  28. }
  29. }
  30. </style>