希望长按出现复制在App.vue 中,加样式 -webkit-user-select: text;
#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
width: 100%;
height:100%;
background: #F4F4F4;
-webkit-user-select: text;
}
希望取消长按出现复制
* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
网友评论