diff --git a/.changeset/forty-penguins-report.md b/.changeset/forty-penguins-report.md new file mode 100644 index 00000000..c6966e06 --- /dev/null +++ b/.changeset/forty-penguins-report.md @@ -0,0 +1,5 @@ +--- +"@reactive-dot/vue": patch +--- + +Fixed issue where provided value for debugging was not removed. diff --git a/packages/vue/src/plugin.ts b/packages/vue/src/plugin.ts index a6f9e874..09203556 100644 --- a/packages/vue/src/plugin.ts +++ b/packages/vue/src/plugin.ts @@ -5,7 +5,6 @@ import { shallowRef, type Plugin } from "vue"; export const ReactiveDotPlugin = { install(app, config) { - app.provide("foo", "bar"); app.provide(configKey, config); app.provide(lazyValuesKey, new Map()); app.provide(mutationEventKey, shallowRef());