1234567891011121314151617181920212223242526272829 |
- import Vue from 'vue'
- import browser from '@/utils/browser'
- // import {
- // $showLoading,
- // $showBroadcast,
- // $hideBroadcast,
- // } from '@/components/popupLayout'
- import {$showHotspot,$hideHotspot } from '@/components/hotspot/index.js'
- Vue.prototype.$bus = new Vue()
- Vue.mixin({
- data() {
- return {
- isMobile: browser.mobile
- }
- },
- methods: {
- $showHotspot,
- $hideHotspot
- // $showLoading,
- // $showBroadcast,
- // $hideBroadcast
- }
- })
|