| 1234567891011 |
- import { watch, unref } from 'vue';
- const useDeprecated = ({ from, replacement, scope, version, ref, type = "API" }, condition) => {
- watch(() => unref(condition), (val) => {
- }, {
- immediate: true
- });
- };
- export { useDeprecated };
- //# sourceMappingURL=index.mjs.map
|