# mpx/no-deprecated-watch-second-param

watch第二个参数统一为函数,不再提供对象方式

  • ⚙️ 这条规则包含在"plugin:mpx/composition-api-essential"

# 📖 规则详情

mpx升级2.8版本之后,watch第二个参数统一为函数,不再提供对象方式

<script setup> import { ref, watch } from '@mpxjs/core' const refValue = ref('') /* ✓ GOOD */ watch(refValue, () => {}) const handler = () => {} watch(refValue, handler) watch(refValue, () => {}, { immediate: true }) /* ✗ BAD */ watch(refValue, { handler() {} }) </script>
Now loading...

# 🔧 选项

# 🔍 具体实现