H5禁止ios回弹效果

先下载npm install inobounce -s

在app.vue里面使用

import inobounce from 'inobounce'

export default {

  name: "App",

  data() {

    return {};

  },

  components: {},

  mounted() {

  },

   created() {

    let u = navigator.userAgent

    if (u.indexOf('iPhone') > -1) {

      inobounce.enable()

    }

  },

  beforeDestroy() {

    inobounce.disable()

  },

  methods: {


  },

};

你可能感兴趣的:(H5禁止ios回弹效果)