34 lines
671 B
Vue
34 lines
671 B
Vue
<template>
|
|
<router-view/>
|
|
</template>
|
|
|
|
<style lang="less">
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
height: 100%;
|
|
}
|
|
|
|
.ipad{
|
|
*{
|
|
-webkit-touch-callout:none;
|
|
-khtml-user-select:none;
|
|
-webkit-user-select:none;
|
|
-moz-user-select:none;
|
|
-ms-user-select: none;
|
|
user-select:none;
|
|
|
|
touch-action: pan-x pan-y; /* 允许单指平移(滚动)但禁用捏合缩放 */
|
|
input,textarea{
|
|
-webkit-touch-callout:default;
|
|
-khtml-user-select:auto;
|
|
-webkit-user-select:auto;
|
|
-moz-user-select:auto;
|
|
-ms-user-select: auto;
|
|
user-select:auto;
|
|
}
|
|
}
|
|
}
|
|
</style>
|