- 博客(8)
- 收藏
- 关注
转载 render函数介绍,以及 render: h => h(App)
原文:https://blog.csdn.net/qq78827534/article/details/80792514这里的代码和上面区别之处有两点:其一,没有显式的模板内容,而是通过render方法生成;其二,使用了createElement方法。关于createElement方法,他是通过render函数的参数传递进来的,这个方法有三个参数:第一个参数主要用于提供dom的html内...
2019-04-08 11:32:16 991
原创 Vue v-show
关于vue v-show的一点不得不说的地方。通常v-show=“flag” 来判断标签是否显示,data中的flag是boolean值。butbutbut如果flag是个数组呢?业务中不可避免会遇到这种情况。例如<template> <div> <div @mouseover="showOrHideDiv" style="width:10...
2019-03-21 22:23:44 459
原创 三级菜单,可自行推演四级五级等。
前言:最近公司有毛病,让我帮写前端,我是后端人员啊。。。。。。心里一万只草泥马路过让我写个portal,用的vue,要菜单栏,但是人家不要现有的组件。。要自己写,而且vue还尽量不要用document。凑,废话不多说,研究了两天的成果,没有js代码的导航栏:html<div class="nav"> <ul> <li> ...
2019-03-21 22:02:59 250
原创 Nginx反向代理解决跨域问题
在nginx.conf配置文件中的server片段增加如下代理server { location /apis { rewrite ^.+apis/?(.*)$ /$1 break; proxy_pass http://localhost:1894; }}重启即可...
2019-02-28 16:27:41 119
原创 druid SqlException: url not set
此异常经过面向百度编程,并没有查询到有效信息。明明配置了url如下://yml配置文件spring: datasource: username: root password: url: jdbc:mysql://localhost:3306/test?serverTimezone=GMT%2B8 driver-class-name: com.mysql.c...
2018-12-05 15:03:08 22364 12
原创 java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼
使用Idea做jdbc的时候用了最新的mysql-connector-java-8.0.11库发现编码没有异常但是运行时出现了两个异常,如下Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is auto...
2018-12-04 12:50:11 137
原创 iframe无法关闭窗口
有时候用chrom浏览器无法关闭iframe弹出层,window.close()等失效建议以下方式:<input type="button" class="normal_btn" value=" 取消 " onclick="closeWin();"/><script type="text/javascript"> function
2018-11-21 18:52:44 1170
原创 JSF标签选择器
关于JSF outputText Convert动态获取值问题<h:outputText value="hello" lang="en" style="color: red"></h:outputText>转换为html为:<span lang="en" style="color:red">hello</s
2018-11-21 16:03:47 254
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人