VSCode 字体

Fira Code

Fira Code 字体是一种程序员专用字体;主要特点是加入了编程连字特性(ligatures)。

我最喜欢的部分是它「等号」 的表现形式;

Redux

使用 redux

首先要创建一个 store

而createStore 需要传入一个 reducer

import { createStore, combineReducers, bindActionCreators} from "redux"

// store in......

报错 : Cannot assign to read only property 'exports' of object '#'

浏览器报错: Cannot assign to read only property 'exports' of object '#'

这是一个模块语法的问题

使用 @babel/plugin-transform-modules-commonjs 来处理这个问题即......