上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: 阅读全文
posted @ 2019-03-16 11:47 码路上的奋斗 阅读(248) 评论(0) 推荐(0) 编辑
摘要: const http = require('http'); http.createServer((req,res)=>{ res.end() }).listen(8090,()=>{ console.log('成功启动服务') }) const http = require('http'); htt 阅读全文
posted @ 2019-03-16 10:33 码路上的奋斗 阅读(591) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/cuo9958/article/details/77989407 vscode真的是一个非常好用的IDE,但是智能提示这块还是不能提示所有的东西,这个真的是非常的麻烦的。 下面就教大家使用typing来给没有提示的关键字、对象、方法等添加提示。 安装typ 阅读全文
posted @ 2019-03-16 09:58 码路上的奋斗 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="videoBox" :style="{width:videowidth,height:videoheight}" > <video-player class="vjs-custom-skin" ref="videoPlayer" :options="pl 阅读全文
posted @ 2019-03-08 08:49 码路上的奋斗 阅读(1184) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="pdf_outWarp"> <div class="pdf_innerWarp" id="innerWarp" v-show="isPfdShow"> <vue-scroll :ops='ops'> <div class="wrapper rollS" 阅读全文
posted @ 2019-03-08 08:41 码路上的奋斗 阅读(869) 评论(1) 推荐(0) 编辑
摘要: rtmp://124.239.196.167/vod/&mp4:classroom/10050457620181029095550c.mp4 注意拼接 阅读全文
posted @ 2019-03-07 13:00 码路上的奋斗 阅读(536) 评论(0) 推荐(0) 编辑
摘要: import axios from 'axios' import qs from 'qs' export function Get(url, data) { return new Promise((resolve, reject) => { axios.get(url, { params: data 阅读全文
posted @ 2019-02-28 14:51 码路上的奋斗 阅读(254) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/gunelark/p/8492468.html 阅读全文
posted @ 2019-02-27 17:27 码路上的奋斗 阅读(93) 评论(0) 推荐(0) 编辑
摘要: import vuescroll from 'vuescroll'; import 'vuescroll/dist/vuescroll.css'; Vue.use(vuescroll); // install the vuescroll first Vue.prototype.$vuescrollC 阅读全文
posted @ 2019-02-22 10:23 码路上的奋斗 阅读(360) 评论(1) 推荐(0) 编辑
摘要: <template> <div> <ul> <li v-for='(item,index) in list ' :key="index">{{item.title}} <span @click='bofang(index)'></span> </li> </ul> <div id="wrapp"> 阅读全文
posted @ 2019-02-19 16:34 码路上的奋斗 阅读(265) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页