| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div id="app">
- <transition name="fade">
- <router-view/>
- </transition>
- </div>
- </template>
- <style>
- #app {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- height:100%;
- min-height: 100%;
- overflow-y: scroll;
- }
- ul, li {
- list-style: none;
- padding: 0;
- }
- s, i, em {
- text-decoration: none;
- font-style: normal;
- }
- /*叹号问题*/
- .mu-warning-text-color {
- float: left;
- }
- </style>
- <script>
- window.onload = function () {
- document.addEventListener('touchstart', function (event) {
- if (event.touches.length > 1) {
- event.preventDefault()
- }
- })
- document.addEventListener('gesturestart', function (event) {
- event.preventDefault()
- })
- }
- </script>
|