<body> <div id="app"> <!-- 2.监听子组件发射的事件 然后再父组件处理事件 --> <cpn @itemclick="cpnClick"></cpn> </div> <template id="cpn"> <div> <button v-for="item in categ ...
分类:
其他好文 时间:
2021-01-02 11:26:02
阅读次数:
0
<!DOCTYPEhtml><html><head><metacharset="UTF-8"><title>防止ajax重复提交</title></head><body><buttonid="btn">提交</button><script>/***模拟ajax提交*@
分类:
Web程序 时间:
2021-01-02 10:57:31
阅读次数:
0
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <style> *{ font-family: 微软雅黑; } </style> </head> <body> <form acti ...
分类:
其他好文 时间:
2021-01-01 12:14:06
阅读次数:
0
用maven打成jar包后,Main.class.getClassLoader().getResource("")为null。 示例: public static void main(String[] args) { System.out.println(Main.class.getResource ...
分类:
编程语言 时间:
2020-12-24 11:31:58
阅读次数:
0
父组件代码 demo <template> <div> <!-- 父组件数据 --> <!-- 通过showFlag判断子父组件得隐藏和现实,默认父组件为现实 true --> <div v-if="showFlag"> <el-button type="primary" size="mini" @ ...
分类:
其他好文 时间:
2020-12-22 12:29:58
阅读次数:
0
通常我们在做项目的时候都会用到大佬们发布到npm上的组件,简单的命令下载即可使用今天我们向大佬学习,走一波大佬的路 简单的目录结构 1.下载相关依赖 通过 npm init 命令,创建package文件 { "name": "vue-component-button", "version": "0. ...
分类:
其他好文 时间:
2020-12-22 12:21:22
阅读次数:
0
在小程序里面是没有dom元素的,这个我们只要会小程序的应该都知道,但是在平时开发中我们偶尔会遇到需要点击某个元素获取它的值的情况,在这里给大家列举了两种情况解决方法 方式一:数据绑定 这种情况的话,对应的场景是只有一个按钮或元素调用这个方法的情况下的 在你的.vue文件中的data数据里面添加变量 ...
分类:
微信 时间:
2020-12-19 11:57:47
阅读次数:
1
在《DarkMode(1):产品应用深色模式分析》提过,单纯反转是不行的。但是,把不需要反转的,在反转过来。或者用js,给想要反转的,加上反转样式,再对其他的做微调。这样个人觉得,开发成本是最低的@media(prefers-color-scheme:dark){//one.app{filter:invert(1)hue-rotate(180deg);img,button,.active{//fi
分类:
Web程序 时间:
2020-12-17 13:10:01
阅读次数:
6
const { Button } = antd; const { PoweroffOutlined } = icons; class App extends React.Component { state = { loadings: [], }; enterLoading = index => { ...
分类:
其他好文 时间:
2020-12-16 11:37:45
阅读次数:
3
<template> <div> <div v-for="(item,index) in this.titleVisibleData"> <div class="title">{{item}}</div> </div> <div> <button @click="moveLeft"><</butto ...
分类:
其他好文 时间:
2020-12-09 12:26:34
阅读次数:
8