diff --git a/src/packages/__VUE/rate/common.ts b/src/packages/__VUE/rate/common.ts index 6519fbf8f8c86380eb89e9b72a2b65cdd7a3d27a..087e4a1ceb165ee98e7ddc191e222df98aecbef6 100644 --- a/src/packages/__VUE/rate/common.ts +++ b/src/packages/__VUE/rate/common.ts @@ -106,7 +106,7 @@ const useComponent = (touchable: Boolean = true) => { const touch = useTouch(); const touchMethods = { onTouchStart(event: Event) { - if (!props.touchable) return; + if (!props.touchable || props.readonly) return; touch.start(event); }, onTouchMove(event: Event) {