1234567891011121314151617181920212223242526272829 |
- import Vue from 'vue'
- import App from './App.vue'
- import store from '@/store'
- import VueClipboard from 'vue-clipboard2'
- import imgPreview from '@/components/popup/imgPreview'
- import packetGet from '@/components/popup/packetGet'
- import packetSend from '@/components/popup/packetSend'
- import otherInfo from '@/components/popup/otherInfo'
- import TWEEN from '@tweenjs/tween.js'
- Vue.use(VueClipboard)
- Vue.use(imgPreview)
- Vue.use(otherInfo, store)
- Vue.use(packetGet, store)
- Vue.use(packetSend, store)
- Vue.config.productionTip = false
- new Vue({
- render: h => h(App),
- store
- }).$mount('#app')
- // Setup the animation loop.
- function animate (time) {
- requestAnimationFrame(animate)
- TWEEN.update(time)
- }
- requestAnimationFrame(animate)
|