@wfrog/vc
Version:
vue3 组件库 vc
17 lines (14 loc) • 483 B
JavaScript
import { watch, unref } from 'vue';
import { e as debugWarn } from './E_WRn0OP.mjs';
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 };