6753a43ec1430011cd980ed7e7e4ea6e8f6498146a54fcc44b8f53714f69a2c81bf65f30ffc302f82419dcc8829eaac7d7f7c457c0bd4076469b888d1baad1 275 B

1234567891011
  1. import { watch, unref } from 'vue';
  2. const useDeprecated = ({ from, replacement, scope, version, ref, type = "API" }, condition) => {
  3. watch(() => unref(condition), (val) => {
  4. }, {
  5. immediate: true
  6. });
  7. };
  8. export { useDeprecated };
  9. //# sourceMappingURL=index.mjs.map