From: Tyler McDonald <100496212+tyler-mcdonald@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:34:35 +0000 (-0500) Subject: docs: fix typo in plugins.md (#2775) X-Git-Tag: @pinia/nuxt@0.5.5~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6cca09394ea2d4c910a266522d3f9678b93f9147;p=thirdparty%2Fvuejs%2Fpinia.git docs: fix typo in plugins.md (#2775) --- diff --git a/packages/docs/core-concepts/plugins.md b/packages/docs/core-concepts/plugins.md index f23a93a7..f784ec0d 100644 --- a/packages/docs/core-concepts/plugins.md +++ b/packages/docs/core-concepts/plugins.md @@ -81,7 +81,7 @@ Any property _returned_ by a plugin will be automatically tracked by devtools so // from the example above pinia.use(({ store }) => { store.hello = 'world' - // make sure your bundler handle this. webpack and vite should do it by default + // make sure your bundler handles this. webpack and vite should do it by default if (process.env.NODE_ENV === 'development') { // add any keys you set on the store store._customProperties.add('hello')