| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <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%;
- overflow-y: hidden;
- }
- 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>
|