publicfun.js 392 B

12345678910111213141516
  1. var publicfun = {}
  2. publicfun.isApp = function () {
  3. if(navigator.userAgent.indexOf('Html5Plus') > 1){
  4. // 执行你的APP打开 html 页面逻辑
  5. return true
  6. }else{
  7. // 执行你的浏览器 html 页面打开逻辑
  8. return false
  9. }
  10. }
  11. publicfun.install = function (Vue, options) {
  12. Vue.prototype.$publicfun = publicfun
  13. Vue.publicfun = publicfun
  14. }
  15. export default publicfun