上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 74 下一页
摘要: componentDidMount声明周期函数 表示组件渲染完成后 componentWillUnmount声明周期函数 组件将要卸载 通常用于(为了防止内存泄漏 清除定时器) 11==>创建组件 Clock.js 组件名大写 12==》报错 Attempted import error: 'Clo 阅读全文
posted @ 2019-12-01 17:38 南风晚来晚相识 阅读(1034) 评论(0) 推荐(0) 编辑
摘要: 10 > 传递参数 import React from "react" //一定要导入React // 函数类型去创建组件 export function Web1(props){ return <div> 我是以函数的形式创建的组件 <p> {props.name}</p> </div> } // 阅读全文
posted @ 2019-12-01 17:28 南风晚来晚相识 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 08==》创建组件以 1类的形式 或者以 2函数的形式 09==》使用组件 在src下创建components文件夹 是放组件的 CompType.js 组件 组件开头大写(重要) CompType.js文件如下 import React from "react" //一定要导入React // 函 阅读全文
posted @ 2019-12-01 17:24 南风晚来晚相识 阅读(206) 评论(0) 推荐(0) 编辑
摘要: react负责逻辑控制 reactdom负责渲染 本节知识点 有 1)变量的使用,简单使用。 1==》jsx中的注释 {/* */} 2 》 简单的渲染 app.js ps==>定义变量 使用变量 import React from 'react'; function App() { const n 阅读全文
posted @ 2019-12-01 15:27 南风晚来晚相识 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 功能需求: 在下拉框中选择你所需要缩放的比例, 选择好了之后,图片会按照你选择的比例进行缩放 1==》如何获取select中option选中的值 在select添加事件change 和双向绑定v-model <select @change="changeValue" v-model="myVal"> 阅读全文
posted @ 2019-11-29 22:03 南风晚来晚相识 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: 图片是放在assets文件夹下的 使用require进行解决 图片不显示的原因 在webpack,将图片放在assets中,会将图片图片来当做模块来用,因为是动态加载的,所以url-loader将无法解析图片地址, <el-table-column label="照片"> <template slo 阅读全文
posted @ 2019-11-27 23:09 南风晚来晚相识 阅读(2833) 评论(0) 推荐(0) 编辑
摘要: 1==》如何让div里面的元素在【垂直 方向】上水平分布.important-dec{ height: 121px; //必须固定高度 flex-direction: column; //垂直排列 display: flex; justify-content: space-between;} 2== 阅读全文
posted @ 2019-11-27 22:06 南风晚来晚相识 阅读(701) 评论(0) 推荐(0) 编辑
摘要: 1==>控制label标签的宽度。解决字段名太长时,不会换行显示 label-width="100px" label标签的宽度是100px; style="width:280px;" 表示label和input的宽度一起有280px;注意一起是280px <el-form-item label="访 阅读全文
posted @ 2019-11-27 21:56 南风晚来晚相识 阅读(7259) 评论(0) 推荐(0) 编辑
摘要: <style type="text/css"> /* el-form-item__content 是input外层最大的div*/ .huo-dong .el-form-item__content{ width: 217px; } </style> <body> <div id="app"> <el 阅读全文
posted @ 2019-11-25 22:59 南风晚来晚相识 阅读(274) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-11-25 22:20 南风晚来晚相识 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 74 下一页