liaoJieGengDuo.vue 420 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <span @click="btnClick"> 了解更多 </span>
  3. </template>
  4. <script>
  5. export default {
  6. name: "liaoJieGengDuo",
  7. methods: {
  8. btnClick() {
  9. },
  10. // 判断是否为移动端
  11. isPC() {
  12. const browserWidth = document.documentElement.clientWidth;
  13. if (browserWidth <= 768) {
  14. return false;
  15. } else {
  16. return true;
  17. }
  18. },
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>