From ef2c3f777a1541905f90d46012e62564fab9d79f Mon Sep 17 00:00:00 2001 From: codersjj <44868357+codersjj@users.noreply.github.com> Date: Sun, 24 Jul 2022 23:53:31 +0800 Subject: [PATCH] docs: fix typo (#1474) --- packages/docs/core-concepts/state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/core-concepts/state.md b/packages/docs/core-concepts/state.md index a54b9b91..143cbeee 100644 --- a/packages/docs/core-concepts/state.md +++ b/packages/docs/core-concepts/state.md @@ -24,7 +24,7 @@ const useStore = defineStore('storeId', { ``` :::tip -If you are using Vue 2, the data you create in `state` follows the same rules as the `data` in a Vue instance, ie the state object must be plain and you need to call `Vue.set()` when **adding new** properties to it. **See also: [Vue#data](https://v2.vuejs.org/v2/api/#data)**. +If you are using Vue 2, the data you create in `state` follows the same rules as the `data` in a Vue instance, i.e. the state object must be plain and you need to call `Vue.set()` when **adding new** properties to it. **See also: [Vue#data](https://v2.vuejs.org/v2/api/#data)**. ::: ## Accessing the `state` -- 2.47.3