上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页
  2020年3月1日
摘要: vue提供了两套条件渲染语句: v-if, v-else 和 v-show <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!-- 条件渲染涉及到3 阅读全文
posted @ 2020-03-01 14:14 显示账号 阅读(446) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .aClass { color: red; } .bClass { color: blue; } .cClass { 阅读全文
posted @ 2020-03-01 13:59 显示账号 阅读(2080) 评论(0) 推荐(0) 编辑
  2020年2月29日
摘要: 本文介绍使用发布订阅的方式进行vue组件间的通信 我认为这种方式比较自由, 不存在组件间的关系问题 1. 首先安装pubsub-js npm install --save pubsub-js 2. 订阅方组件 import PubSub from 'pubsub-js' mounted(){ // 阅读全文
posted @ 2020-02-29 23:21 显示账号 阅读(3500) 评论(0) 推荐(0) 编辑
摘要: 假设在App.vue组件中定义一个addComment函数,而在Add.vue组件中会去调用这个addComment函数 App.vue <template> <div> <header class="site-header jumbotron"> <div class="container"> < 阅读全文
posted @ 2020-02-29 17:07 显示账号 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 1. vue组件都是由这三部分组成 <template> <div> </div> </template> <script> export default{} </script> <style> </style> 2. 组件间的引用分3步走,假设现在有两个组件 App.vue,和 Add.vue,现 阅读全文
posted @ 2020-02-29 17:02 显示账号 阅读(2445) 评论(0) 推荐(0) 编辑
摘要: 安装好vue-cli脚手架之后,使用如下命令即可生成vue的模板工程: vue init webpack vue_demo 其中vue-demo是工程名称 |-- build : webpack 相关的配置文件夹(基本不需要修改) |-- dev-server.js : 通过 express 启动后 阅读全文
posted @ 2020-02-29 15:52 显示账号 阅读(349) 评论(0) 推荐(0) 编辑
  2020年2月28日
摘要: 1. 插入 > 页码 2. 点击“页码”后边的倒三角,在弹出框中选择“页面底端”,然后再随便选一个数字样式后即可生成页码 3. 点击“页码”后边的倒三角,在弹出框中选择“设置页码格式”,即可对页码样式进行设置。 譬如想从原先的第三页开始生成页码,即原本的第三页变成第一页,后面页码也跟着变 1. 将光 阅读全文
posted @ 2020-02-28 23:50 显示账号 阅读(1665) 评论(0) 推荐(0) 编辑
  2020年2月24日
摘要: 打开文件并且跳转到指定行: vim filename +245 阅读全文
posted @ 2020-02-24 22:07 显示账号 阅读(147) 评论(0) 推荐(0) 编辑
  2020年2月22日
摘要: 记录一下微信授权登录的开发套路,免得过几天又忘了 1. 先搞一下测试账号 https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login 2. 找到接口权限页面 https://mp.weixin.qq.com/advanced/adva 阅读全文
posted @ 2020-02-22 17:38 显示账号 阅读(2476) 评论(1) 推荐(1) 编辑
  2020年2月21日
摘要: @Test public void test1(){ GlobalConfig globalConfig = new GlobalConfig(); globalConfig.setOutputDir(System.getProperty("user.dir") + "/src/main/java" 阅读全文
posted @ 2020-02-21 15:26 显示账号 阅读(1890) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页