Skip to content

Commit

Permalink
docs: markup
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Mar 19, 2024
1 parent 738f197 commit 7ba4558
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions packages/docs/core-concepts/plugins.md
Expand Up @@ -175,15 +175,15 @@ pinia.use(({ store }) => {
}
store.hasError = toRef(store.$state, 'hasError')

// make sure to set the context (`this`) to the store
// make sure to set the context (`this`) to the store
const originalReset = store.$reset.bind(store)

// override the $reset function
// override the $reset function
return {
$reset() {
originalReset()
store.hasError = false
}
},
}
})
```
Expand Down Expand Up @@ -397,7 +397,7 @@ There is also a `StoreGetters` type to extract the _getters_ from a Store type.

When [using pinia alongside Nuxt](../ssr/nuxt.md), you will have to create a [Nuxt plugin](https://nuxt.com/docs/guide/directory-structure/plugins) first. This will give you access to the `pinia` instance:

```ts
```ts{14-16}
// plugins/myPiniaPlugin.ts
import { PiniaPluginContext } from 'pinia'
Expand All @@ -416,13 +416,17 @@ export default defineNuxtPlugin(({ $pinia }) => {
})
```

Note the above example is using TypeScript, you have to remove the type annotations `PiniaPluginContext` and `Plugin` as well as their imports if you are using a `.js` file.
::: info

The above example is using TypeScript, you have to remove the type annotations `PiniaPluginContext` and `Plugin` as well as their imports if you are using a `.js` file.

:::

### Nuxt.js 2

If you are using Nuxt.js 2, the types are slightly different:

```ts
```ts{3,15-17}
// plugins/myPiniaPlugin.ts
import { PiniaPluginContext } from 'pinia'
import { Plugin } from '@nuxt/types'
Expand Down

0 comments on commit 7ba4558

Please sign in to comment.