|
|
@@ -29,16 +29,26 @@
|
|
|
isMobile: function () {
|
|
|
return this.$store.state.option.isMobile
|
|
|
}
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ if (this.isMobile) {
|
|
|
+ let doc = document
|
|
|
+ let win = window
|
|
|
+ let docEl = doc.documentElement
|
|
|
+ let resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize'
|
|
|
+ let recalc = function () {
|
|
|
+ let clientWidth = docEl.clientWidth
|
|
|
+ if (!clientWidth) return
|
|
|
+ if (clientWidth >= 640) {
|
|
|
+ docEl.style.fontSize = '100px'
|
|
|
+ } else {
|
|
|
+ docEl.style.fontSize = 100 * (clientWidth / 640) + 'px'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!doc.addEventListener) return
|
|
|
+ win.addEventListener(resizeEvt, recalc, false)
|
|
|
+ doc.addEventListener('DOMContentLoaded', recalc, false)
|
|
|
+ }
|
|
|
}
|
|
|
-// data () {
|
|
|
-// return {
|
|
|
-// url: window.location.href
|
|
|
-// }
|
|
|
-// },
|
|
|
-// watch: {
|
|
|
-// url: function (val, oldVal) {
|
|
|
-// console.log(val)
|
|
|
-// }
|
|
|
-// }
|
|
|
}
|
|
|
</script>
|