摘要: outline:none; 阅读全文
posted @ 2020-07-12 23:00 雪糕战士 阅读(1774) 评论(0) 推荐(0) 编辑
摘要: styled-components用法 定义样式 import styled from 'styled-components'; export const HeaderWrapper = styled.div` height:56px; background:red; ` 组件里面使用 import 阅读全文
posted @ 2020-07-12 16:58 雪糕战士 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 1、项目初始化配置 styled-components让css项目互相不干扰 cnpm i styled-components 使用方法 import { createGlobalStyle } from 'styled-components'; export const Globalstyle = 阅读全文
posted @ 2020-07-12 15:10 雪糕战士 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 安装react-redux cnpm i react-redux 文件目录 定义store文件 1 index.js文件: 2 3 import { createStore } from 'redux'; 4 import reducer from './reducer'; 5 const stor 阅读全文
posted @ 2020-07-12 00:11 雪糕战士 阅读(114) 评论(0) 推荐(0) 编辑