vue3中如何让页面不能被全选

只需要在最外层div中加入user-select: none;样式即可

.container {
  width: 100%;
  height: 100vh;
  user-select: none;
}

你可能感兴趣的:(前端,Vue3)