上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

2018年12月26日

react 添加scss文件 sass

摘要: 1. 安装依赖:yarn add sass-loader node-sass 2. 放在rule里就可以 找到config里面的两个配置文档。 配置的内容都是一样的。 代码是:{ test: /\.scss$/, loaders: ['style-loader', 'css-loader', 'sa 阅读全文

posted @ 2018-12-26 17:37 luziluck 阅读(472) 评论(0) 推荐(0) 编辑

2018年12月10日

Jquery鼠标滚动到页面底部自动加载更多内容,使用分页

摘要: https://www.cnblogs.com/qhorse/p/4717726.html index.php代码 [html] view plaincopy<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// 阅读全文

posted @ 2018-12-10 11:37 luziluck 阅读(355) 评论(0) 推荐(0) 编辑

vue安装bootstrap

摘要: https://github.com/bootstrap-vue/bootstrap-vue 这里有个bootstrap-vue官网:https://bootstrap-vue.js.org/docs/components/button html语法和bootstrap原来的语法有区别 阅读全文

posted @ 2018-12-10 11:28 luziluck 阅读(257) 评论(0) 推荐(0) 编辑

2018年12月5日

react 引入jquery

摘要: npm install jquery --save 在需要的页面: import $ from 'jquery' constructor(props){ // $(function(){ // alert(123); // }) } 这种方式可以实现,具体怎么用不是很清楚 阅读全文

posted @ 2018-12-05 11:29 luziluck 阅读(251) 评论(0) 推荐(0) 编辑

create-react-app搭建的项目中添加bootstrap

摘要: react-bootstrap是一个非常受欢迎的针对react封装过的bootstrap,它本身不包含css,所以也是需要使用bootstrap原生库。 在create-react-app建的项目目录中安装react-bootstrap。 安装bootstrap。 在index.js文件中增加css 阅读全文

posted @ 2018-12-05 11:27 luziluck 阅读(217) 评论(0) 推荐(0) 编辑

2018年12月4日

mac安装office: https://blog.csdn.net/qq_34621169/article/details/79365247

摘要: mac安装office: https://blog.csdn.net/qq_34621169/article/details/79365247 阅读全文

posted @ 2018-12-04 08:59 luziluck 阅读(131) 评论(0) 推荐(0) 编辑

2018年11月27日

vue-cli proxyTable中跨域中pathRewrite配置

摘要: 1. vue本地项目调试线上接口出现跨域问题2. 通过在 config/index.js 配置文件中找到proxyTable配置项dev: { // Paths assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable: { '/ 阅读全文

posted @ 2018-11-27 18:19 luziluck 阅读(7267) 评论(0) 推荐(0) 编辑

滚动-加载下一页-防止多次触发下一页数据等返回回来数据,再操作再进行触发下一页数据

摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>滚动-加载下一页-防止多次触发下一页数据等 阅读全文

posted @ 2018-11-27 16:49 luziluck 阅读(392) 评论(0) 推荐(0) 编辑

2018年11月24日

vue 中引入font-awesome

摘要: 直接引入npm install font-awesome --save就可以了,里面包含样式和字体,直接引入样式就可以了 入口js中引入 import 'font-awesome/css/font-awesome.min.css' 就可以使用了 <i class="fa fa-camera-retr 阅读全文

posted @ 2018-11-24 20:50 luziluck 阅读(8089) 评论(0) 推荐(1) 编辑

2018年11月22日

vue小结2018-11-12

摘要: 1. Template下只能有一个总元素 <template> <router-view/> </template> 是对的 <template> <div>111</div> <router-view/> </template> 是不对的,只能有一个总元素,可以用div包起来 2. build下的 阅读全文

posted @ 2018-11-22 17:53 luziluck 阅读(87) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

导航