上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
  2021年11月4日
摘要: 如果是本地图片需要用require引入进来 导入预览组件 <van-image-preview v-model="show" :images="images" :showIndex="false"> </van-image-preview> images: [ require("../../asse 阅读全文
posted @ 2021-11-04 11:19 荻!!!!!!!! 阅读(135) 评论(0) 推荐(0) 编辑
  2021年11月3日
摘要: 文本框和富文本框.下拉框和复选框都是onchange监听事件变化 props是只读属性.可以传任意值.子字符串.数组.函数.甚至是jsx片段 如果是类组件来接收props.写了构造函数.应该吧props传递给super().否则构造函数中无法获取props. 父向子传值直接在标签上传递 子向父传值. 阅读全文
posted @ 2021-11-03 20:59 荻!!!!!!!! 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 不要写overflow:scroll.要使用专门的组件scroll-view. 阅读全文
posted @ 2021-11-03 20:42 荻!!!!!!!! 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 宽度比父盒子小40px width: calc(100% - 40px); 阅读全文
posted @ 2021-11-03 09:07 荻!!!!!!!! 阅读(154) 评论(0) 推荐(0) 编辑
  2021年10月30日
摘要: vue的强项是vue的组件.组件是创建用户界面的.不仅仅是网页有用户界面.小程序和app都有自己的用户界面.vue既可以为网页创建用户界面.也可以为小程序和安卓.ios去创建用户界面.如果是为网页配置用户界面打包的就是html.css.js. 写的vue最终是会打包的.打包操作就是转化编译操作.他同 阅读全文
posted @ 2021-10-30 21:22 荻!!!!!!!! 阅读(2406) 评论(0) 推荐(0) 编辑
  2021年10月29日
摘要: 用ifrma标签还是不太合适.太受限制了.可以在main.js里面拦截. if (window.location.pathname == "/archives-category/ENTRY") { let token = getQuery("token") if (token) { getUser( 阅读全文
posted @ 2021-10-29 09:25 荻!!!!!!!! 阅读(325) 评论(0) 推荐(0) 编辑
  2021年10月27日
摘要: 导入base64的包来解析 npm install --save base-64 getUser(returntoken) { var base64 = require('base-64'); // alert('11.' + JSON.stringify(base64)) let splitStr 阅读全文
posted @ 2021-10-27 09:05 荻!!!!!!!! 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 目前涉及到了localstoral跨域 直接代码 这边是需要接受token的页面. <iframe id="bbb-iframe" src="http://192.168.100.151:8080" style="display:none;" >xxx</iframe > mounted() { c 阅读全文
posted @ 2021-10-27 08:52 荻!!!!!!!! 阅读(1587) 评论(0) 推荐(0) 编辑
  2021年10月22日
摘要: <el-tree ref="JigoutreeRef" :default-checked-keys="defJigouKeys" @node-expand="handleNodeClick" :props="defaultProps" :load="getOrgList" node-key="xzq 阅读全文
posted @ 2021-10-22 15:28 荻!!!!!!!! 阅读(167) 评论(0) 推荐(0) 编辑
  2021年10月16日
摘要: 1、防抖,触发高频事件后n秒内函数只会执行一次,如果n秒内高频事件再次出发,则重新计算时间。 const debounce = (fn, time) => { let timeout = null; return function() { clearTimeout(timeout) timeout 阅读全文
posted @ 2021-10-16 16:16 荻!!!!!!!! 阅读(28) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页