上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 98 下一页
摘要: 1. 挂载卸载过程 1.1.constructor() 1.2.componentWillMount() 1.3.componentDidMount() 1.4.componentWillUnmount () 2. 更新过程 2.1. componentWillReceiveProps (nextP 阅读全文
posted @ 2020-06-30 17:32 JackieDYH 阅读(31) 评论(0) 推荐(0) 编辑
摘要: React常见错误 ①Uncaught SyntaxError: Inline Babel script: Adjacent JSX elements must be wrapped in an enclosing tag 虚拟DOM中只能有一个根标签 ②Warning: Invalid DOM p 阅读全文
posted @ 2020-06-29 22:34 JackieDYH 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 可以在react项目中执行以下命令安装bootstrap npm install bootstrap@3 --save 在使用的时候,直接在index.js文件导入即可 import 'bootstrap/dist/css/bootstrap.min.css'; import 'bootstrap/ 阅读全文
posted @ 2020-06-29 21:41 JackieDYH 阅读(5) 评论(0) 推荐(0) 编辑
摘要: import React, { Component } from 'react'; import './App.css'; export default class Home extends Component { state = { isidx: -1, empty: true, user: { 阅读全文
posted @ 2020-06-29 21:37 JackieDYH 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 页面结构 <!-- 限时秒杀 --> <div class="left"> <p class="txt1">限时秒杀</p> <p class="txt2">{{ !seckill.title ? '每天零点场 好货秒不停' : seckill.title }}</p> <div v-if="sec 阅读全文
posted @ 2020-06-28 23:45 JackieDYH 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 购物车左滑事件 goods.startx = 0;//滑动 goods.endx = 0;//结束 goods.isshow = false;//显示隐藏 标签中添加滑动事件 <div :class="{list:true,activeleft:item.isshow}" v-for="(item, 阅读全文
posted @ 2020-06-28 23:04 JackieDYH 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 注意:需要使用then和catch进行捕获 MessageBox.confirm("", { message: "你确定删除吗?", title: "警告" }).then(action => { if (action == "confirm") { console.log(1); this.$ht 阅读全文
posted @ 2020-06-27 13:35 JackieDYH 阅读(11) 评论(0) 推荐(0) 编辑
摘要: @vue/cli 前言 如果下载速度慢,可以设置淘宝镜像-国内速度杠杠滴 npm config set registry "https://registry.npm.taobao.org" 1、升级本地环境 卸载旧版本 安装新版本脚手架 卸载全局安装旧版本 npm uninstall -g vue- 阅读全文
posted @ 2020-06-25 20:26 JackieDYH 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 我们使用element-ui、vue开发网站的时候,往往图标是起着很重要的作用。 下面是vue、element-ui项目,如何使用阿里iconfont图标库的方法。 点击紫色按钮创建项目 image.png 图中画红线的地方很重要 1)、FontClass/Symbol前缀这个很重要,一定不要写成: 阅读全文
posted @ 2020-06-24 17:39 JackieDYH 阅读(129) 评论(0) 推荐(0) 编辑
摘要: vuex是在中大型项目中必不可少的状态管理组件,刷新会重新更新状态,但是有时候我们并不希望如此。例如全局相关的,如登录状态、token、以及一些不常更新的状态等,我们更希望能够固化到本地,减少无用的接口访问,以及更佳的用户体验。 安装起步 npm i vuex-persistedstate --sa 阅读全文
posted @ 2020-06-22 16:59 JackieDYH 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 98 下一页