原因是mui框架的有個css樣式
*{
-webkit-user-select: none;
}
其作用是禁掉使用者可以選中頁面中的內容。
新增以下style樣式即可
input{
-webkit-user-select: auto;
}
原因是mui框架的有個css樣式
*{
-webkit-user-select: none;
}
其作用是禁掉使用者可以選中頁面中的內容。
新增以下style樣式即可
input{
-webkit-user-select: auto;
}