UNPKG

mldong-flow-designer-plus

Version:

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

18 lines (17 loc) 533 B
import { watch, unref } from "vue"; import { f as debugWarn } from "./install-La2G4dPY.js"; 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-f63FEw6o.js.map