|
@@ -1,4 +1,4 @@
|
|
|
-console.log('v1.1')
|
|
|
+console.log('v1.2')
|
|
|
|
|
|
import Vue from 'vue'
|
|
|
import App from './App.vue'
|
|
@@ -31,6 +31,13 @@ window.addEventListener('resize', () => {
|
|
|
document.documentElement.style.fontSize = window.innerHeight * 0.025276 + 'px'
|
|
|
})
|
|
|
|
|
|
+document.documentElement.addEventListener('touchmove', function(event) {
|
|
|
+ if (event.touches.length > 1) {
|
|
|
+ event.preventDefault()
|
|
|
+ event.stopPropagation()
|
|
|
+ }
|
|
|
+}, true)
|
|
|
+
|
|
|
new Vue({
|
|
|
router,
|
|
|
store,
|