UNPKG

mldong-flow-designer-plus

Version:

本项目包含了作者为B站课堂视频[《工作流设计器开发最佳实践》](https://www.bilibili.com/cheese/play/ss24484)的过程源码。教程中开发的组件也可用于实际生产环境中。以下是和使用文档和课程章节说明。 ## 实战项目 [演示地址](https://flow-pro.mldong.com/)

14 lines (13 loc) 511 B
import { f as debugWarn } from "./error-DEV4o0cD.js"; import { watch, unref } from "vue"; const useDeprecated = ({ from, replacement, scope, version, ref, type = "API" }, condition) => { watch(() => unref(condition), (val) => { if (val) debugWarn(scope, `[${type}] ${from} is about to be deprecated in version ${version}, please use ${replacement} instead. For more detail, please visit: ${ref} `); }, { immediate: true }); }; export { useDeprecated as u }; //# sourceMappingURL=index-CK7E9QfX.js.map