12345678910111213141516 |
- var publicfun = {}
- publicfun.isApp = function () {
- if(navigator.userAgent.indexOf('Html5Plus') > 1){
- // 执行你的APP打开 html 页面逻辑
- return true
- }else{
- // 执行你的浏览器 html 页面打开逻辑
- return false
- }
- }
- publicfun.install = function (Vue, options) {
- Vue.prototype.$publicfun = publicfun
- Vue.publicfun = publicfun
- }
- export default publicfun
|