摘要:
scoped虽然避免了组件间样式污染,但是很多时候我们需要修改组件中的某个样式,但是又不想去除scoped属性 使用/deep/ <!-- Parent --> <template> <div class="wrap"> <Child /> </div> </template> <style lan 阅读全文
摘要:
function deepClone(source){ var targetObj = Array.isArray(source) Array ? [] : {}; for(var keys in source){ if(source.hasOwnProperty(keys)){ if(source 阅读全文
摘要:
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> 阅读全文
摘要:
r-canvas.js export default{ data(){ return{ system_info:{}, //system info canvas_width:0, //canvas width px canvas_height:0, //canvas height px ctx:nu 阅读全文
摘要:
npm install axios --save 创建三个文件(index.js/interceptor.js/request.js) /** * index.js * api地址管理 */ export default { login:'/user/login', getInfo:'/user/g 阅读全文
摘要:
SASS的安装使用:安装sass-loader node-sass 前者依赖于后者 sass-loader:把 sass编译成css;node-sass:nodejs环境中将sass转css。 npm install sass-loader --save-dev npm install node-s 阅读全文
摘要:
设置echart的属性:force-use-old-canvas="true" <ec-canvas id="xxx" canvas-id="xxx" ec="{{ ec }}" force-use-old-canvas="true"></ec-canvas> 注意事项: 这个错误针对真机调试,上线 阅读全文
摘要:
.spin{ -webkit-animation: fadespin 1.5s infinite linear; animation: fadespin 1.5s infinite linear; } @keyframes fadespin{ 0% { -webkit-transform: rotateY(0deg); transform:... 阅读全文
摘要:
//分享接口 function ShareLp(query,pkid){ var shareUrl=""; var shareImg=""; var shareTll=""; var shareInfo=""; var u = navigator.userAgent; var isAndroid = u.indexOf('Android') > -1 || u.indexOf... 阅读全文
摘要:
Jquery Ajax获取接口json数据 写好后打开浏览器访问,可以看到json数据,如图: 全选复制到json格式校验网站进行格式化 然后修改ajax里面的代码: 完成。 阅读全文