兄弟组件之间相互传递数据 首先创建一个vue的空白实例(兄弟间的桥梁) 两个兄弟之间建立一个js文件 import Vue from 'vue' export default new Vue() 子组件 childa发送方使用 $emit 自定义事件把数据带过去 <template> <div> < ...
分类:
其他好文 时间:
2020-03-18 23:36:21
阅读次数:
60
const el = document.createElement('textarea'); el.value = str; el.setAttribute('readonly', ''); el.style.position = 'absolute'; el.style.left = '-9999 ...
分类:
Web程序 时间:
2020-03-18 09:35:51
阅读次数:
181
在模块项目中下载 vue-router 执行命令 npm install vue-router cnpm install --save vue-router 创建 vue-router 和使用 文件结构: 项目 --> src --> router --> index.js index.js imp ...
分类:
其他好文 时间:
2020-03-17 13:52:15
阅读次数:
50
CSS nth-child() nth-child()不止作用于子元素,还会作用于孙子元素,比如:div:nth-child(1),不止会作用于div,还会作用于div里的div. table相关元素的backgroundborderheightwidthmarginpadding测试 demo结论 ...
分类:
其他好文 时间:
2020-03-17 10:22:30
阅读次数:
82
/* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() {} Node(int _val) { val = _val; } Node(int _val, vector<Node ...
分类:
其他好文 时间:
2020-03-16 17:35:43
阅读次数:
55
1. 前言 介绍 Mongodb 3.X 的认证控制 2. 环境搭建 [root@192.168.118.16 /usr/local/src]#wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-3.6.11.tgz [root@ ...
分类:
数据库 时间:
2020-03-16 14:40:49
阅读次数:
83
1、监听事件:以 Listener包裹组件支持的监听包含: onPointerDown,onPointerMove,onPointerUp,onPointerCancel。 同 Listener 类似,有 IgnorePointer(忽略本身),和AbsorbPointer(不忽略本身)。 忽略事件 ...
分类:
其他好文 时间:
2020-03-15 13:21:27
阅读次数:
52
先来一段递归数据,要求显示数组里所有的值 1 var data = [ 2 { 3 name:'AAA', 4 child:[ 5 {name:'a1',child:[{name:'a1-1'},{name:'a1-2'}]}, 6 {name:'a2'}, 7 {name:'a3',child:[ ...
分类:
编程语言 时间:
2020-03-14 22:16:31
阅读次数:
85
1.打开浏览器 最简单的方法: const cp = require('child_process') cp.exec('start http://127.0.0.1:8889/'); // 自动打开默认浏览器 另一种方法是安装open 依赖包: const open = require('open ...
分类:
其他好文 时间:
2020-03-14 17:02:59
阅读次数:
57
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>loading动画</title> 6 <style type="text/css"> 7 @keyframes loading{ 8 fr ...
分类:
Web程序 时间:
2020-03-14 16:41:32
阅读次数:
60