|
@@ -105,3 +105,13 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+ // 取消双击选中文字
|
|
|
+div{
|
|
|
+ -moz-user-select:none;/*火狐*/
|
|
|
+ -webkit-user-select:none;/*webkit浏览器*/
|
|
|
+ -ms-user-select:none;/*IE10*/
|
|
|
+ -khtml-user-select:none;/*早期浏览器*/
|
|
|
+ user-select:none;
|
|
|
+}
|
|
|
+</style>
|