河畔的风

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2020年5月28日

摘要: <div> <img src='../../a.png'> </div> <style> img{ max-height: 100%; max-width: 100%; position: absolute; top: 50%; left: 50%; -webkit-transform: trans 阅读全文
posted @ 2020-05-28 10:58 河畔的风 阅读(262) 评论(0) 推荐(0) 编辑

2020年5月25日

摘要: return createElement( 'h' + this.level, [ createElement('a', { attrs: { name: headingId, href: '#' + headingId }, style: { color: 'red', }, 'class': { 阅读全文
posted @ 2020-05-25 16:08 河畔的风 阅读(559) 评论(0) 推荐(0) 编辑

2020年5月24日

摘要: //复制文本信息 copyContext(val){ const input = document.createElement('input') document.body.appendChild(input) input.setAttribute('value',val) input.select 阅读全文
posted @ 2020-05-24 14:49 河畔的风 阅读(151) 评论(0) 推荐(0) 编辑

2020年5月18日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2020-05-18 15:56 河畔的风 阅读(270) 评论(0) 推荐(0) 编辑

2020年5月14日

摘要: 请求加入responseType = "blob"; —————————————————————————————————————— api.then(res =>{ //用来读取文件blob返回type为application/json的错误信息 if (res.response.type 'app 阅读全文
posted @ 2020-05-14 11:33 河畔的风 阅读(129) 评论(0) 推荐(0) 编辑

摘要: dllalsdf(){ // 获取时间戳 let timestamp=new Date().getTime(); // 获取XMLHttpRequest let xmlResquest = new XMLHttpRequest(); // 发起请求 xmlResquest.open("POST",' 阅读全文
posted @ 2020-05-14 11:31 河畔的风 阅读(145) 评论(0) 推荐(0) 编辑

2020年5月11日

摘要: import Vue from 'vue' import Vuex from 'vuex' import axaios from 'axios' import createPersistedState from "vuex-persistedstate" //将数据持久化, 此方法就是将store中 阅读全文
posted @ 2020-05-11 12:59 河畔的风 阅读(353) 评论(0) 推荐(0) 编辑

摘要: @font-face{ font-family: '字体name'; src: url('../font/本地字体.eot'); src: url('../font/本地字体.eot?#iefix') format('embedded-opentype'), url('../font/本地字体.tt 阅读全文
posted @ 2020-05-11 11:35 河畔的风 阅读(349) 评论(0) 推荐(0) 编辑

摘要: 在组件的index.js文件中export出组件 组件 import Component from './Component ' const MyComponent= { install: function(Vue){ Vue.component('MyComponent',Component ) 阅读全文
posted @ 2020-05-11 11:24 河畔的风 阅读(161) 评论(0) 推荐(0) 编辑

摘要: import axios from 'axios'; import router from '../router' axios.interceptors.request.use( config => { if (localStorage.getItem("token")) { //统一将token带 阅读全文
posted @ 2020-05-11 10:45 河畔的风 阅读(195) 评论(0) 推荐(0) 编辑