(callback)
| 1291 | * @returns |
| 1292 | */ |
| 1293 | const watchEffectRef = (callback) => { |
| 1294 | // 收集依赖 |
| 1295 | const effectRes = shallowRef(undefined); |
| 1296 | // 监听 |
| 1297 | watchEffect(() => (effectRes.value = unref(callback()))); |
| 1298 | return effectRes; |
| 1299 | }; |
| 1300 | /** |
| 1301 | * @description 创建元素节点 |
| 1302 | * @param eleName |
no test coverage detected