> For the complete documentation index, see [llms.txt](https://easonwang.gitbook.io/web_advance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://easonwang.gitbook.io/web_advance/redux/xiao-ji-qiao.md).

# 小技巧

## 快速 copy store 內的整個 object 到 clipboard

在可以存取到 store 的地方加上這段

```javascript
  Object.defineProperty(window, 'reduxStore', {
    get() {
      return store.getState();
    },
  });
```

然後到 browser console 輸入 `copy(reduxStore)`

或是使用 redux devtool 點 raw 也可以
