@cuiqg/eslint-config 2.5.3 → 2.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +10 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -641,16 +641,21 @@ async function vue() {
|
|
|
641
641
|
return [{
|
|
642
642
|
languageOptions: {
|
|
643
643
|
globals: {
|
|
644
|
+
ref: "readonly",
|
|
644
645
|
computed: "readonly",
|
|
646
|
+
reactive: "readonly",
|
|
647
|
+
defineProps: "readonly",
|
|
645
648
|
defineEmits: "readonly",
|
|
649
|
+
defineModel: "readonly",
|
|
646
650
|
defineExpose: "readonly",
|
|
647
|
-
|
|
651
|
+
defineOptions: "readonly",
|
|
652
|
+
defineSlots: "readonly",
|
|
653
|
+
useSlots: "readonly",
|
|
654
|
+
useAttrs: "readonly",
|
|
648
655
|
onMounted: "readonly",
|
|
649
656
|
onUnmounted: "readonly",
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
shallowReactive: "readonly",
|
|
653
|
-
shallowRef: "readonly",
|
|
657
|
+
onActivated: "readonly",
|
|
658
|
+
onDeactivated: "readonly",
|
|
654
659
|
toRef: "readonly",
|
|
655
660
|
toRefs: "readonly",
|
|
656
661
|
watch: "readonly",
|