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