04 2021 档案
摘要:js Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { deltaX: 0, // 左右滑动回弹距离 _startx: 0, // 开始的位置x _starty: 0, // 开始的位置y _endx: 0,
阅读全文
摘要:import React from "react"; import "./style.less"; class SlideItem extends React.Component { constructor(props) { super(props); this.state = {}; } comp
阅读全文
摘要:1. 卸载 npm uninstall yarn -g 2. 安装 npm install yarn (最好不要用别的安装命令,会没效果) 3. 添加环境变量:系统变量path添加 C:\Users\bokeyuan\node_modules\yarn\bin 4. 重新打开cmd执行:yarn -
阅读全文