|
@@ -1,4 +1,4 @@
|
|
|
-import { defineComponent, reactive, watch } from 'vue';
|
|
|
+import { defineComponent, PropType, reactive, watch } from 'vue';
|
|
|
import styles from './point.module.less';
|
|
|
import { iconArrow } from '../image/icons.json';
|
|
|
import {
|
|
@@ -22,7 +22,7 @@ export default defineComponent({
|
|
|
default: () => []
|
|
|
},
|
|
|
tabActive: {
|
|
|
- type: Array,
|
|
|
+ type: Array as PropType<any>,
|
|
|
default: () => []
|
|
|
},
|
|
|
itemActive: {
|