traefik/webui/src/boot/_hacks.js

14 lines
241 B
JavaScript
Raw Normal View History

2019-08-26 16:15:41 +00:00
import Bowser from 'bowser'
import vhCheck from 'vh-check'
const browser = Bowser.getParser(window.navigator.userAgent)
// In Mobile
if (browser.getPlatform().type === 'mobile') {
vhCheck()
}
export default async ({ app, Vue }) => {
}