| 123456789101112131415161718192021 |
- export default {
- data() {
- return {
- isMobile: false,
- cacheHasNewVersion:false
- };
- },
- methods: {
- checkIsMob() {
- if (window.navigator.userAgent.match(
- /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|IEMobile|MQQBrowser|JUC|Windows Phone)/i)) {
- return true;
- } else {
- return false;
- }
- }
- },
- mounted() {
- this.isMobile = this.checkIsMob();
- }
- };
|