[!] wxc-radio組件修改list array時無法修改期選中項
diff --git a/packages/wxc-radio/index.vue b/packages/wxc-radio/index.vue
index 34e2238..5e69dd2 100644
--- a/packages/wxc-radio/index.vue
+++ b/packages/wxc-radio/index.vue
@@ -46,7 +46,13 @@
       }
     },
     watch: {
-      list (newList) {
+      list (newList, oldList) {
+        if (JSON.stringify(newList) !== JSON.stringify(oldList.map(v => {
+          const {title, value} = v
+          return {title, value}
+        }))) {
+          this.checkedIndex = -1
+        }
         this.setListChecked(newList);
       }
     },