码迷,mamicode.com
首页 >  
搜索关键字:directive    ( 806个结果
vue自定义指令 调用函数传参
<div v-mydirect:fn="item"></div> Vue.directive('mydirect', { bind (el, binding,vnode) { let that = vnode.context that[binding.arg](binding.value) } }) ...
分类:其他好文   时间:2021-06-10 17:34:26    阅读次数:0
翻译练习
Commission Directive 2003-94-EC of 8 October 2003 laying down the principles and guidelines of good manufacturing practice in respect of medicinal pro ...
分类:其他好文   时间:2021-05-24 13:33:30    阅读次数:0
vue自定义指令防抖
import Vue from "vue"; // vue自定义指令防抖 Vue.directive("antiShake", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:其他好文   时间:2021-04-26 13:57:03    阅读次数:0
vue自定义指令节流
import Vue from "vue"; // vue自定义指令节流 Vue.directive("throttle", { bind: function(el, binding, vnode) { let { delay, fn } = binding.value; //参数:时间,执行函数 ...
分类:其他好文   时间:2021-04-26 13:55:45    阅读次数:0
HTTP头的Expires与Cache-control
1.概念 Cache-control用于控制HTTP缓存(在HTTP/1.0中可能部分没实现,仅仅实现了Pragma: no-cache) 数据包中的格式: Cache-Control: cache-directive cache-directive可以为以下: request时用到: | "no- ...
分类:Web程序   时间:2021-04-07 11:20:59    阅读次数:0
vue自定义指令实现按钮级权限
1、创建指令文件bthPermission.js,编写自定义指令: import Vue from 'vue'; import api from "api"; /**权限指令**/ const has = Vue.directive('has', { bind: async function (el ...
分类:其他好文   时间:2021-03-10 13:37:17    阅读次数:0
Redis 安装配置
Redis 安装 安装准备: redis 压缩包 官网下载地址:https://redis.io/download 安装步骤: 第一步:安装 gcc 编译器 官网发布的 Redis 压缩包是 C 语言源码文件,要安装 Redis 需要 gcc 编译器来编译源码 输入安装 gcc 命令,如下: [ro ...
分类:其他好文   时间:2021-03-10 13:27:29    阅读次数:0
How To Install MediaWiki on Ubuntu 18.04 LTS
Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache ...
分类:系统相关   时间:2021-03-06 14:52:16    阅读次数:0
Vue练习
###目录结构 ├── build // 构建相关 ├── config // 配置相关 ├── src // 源代码 │ ├── api // 所有请求 │ ├── assets // 主题 字体等静态资源 │ ├── components // 全局公用组件 │ ├── directive // ...
分类:其他好文   时间:2021-02-16 12:08:51    阅读次数:0
vue自定义指令的用法
1)全局注册 1.在main.js中通过Vue.directive全局注册一个指令 Vue.directive('demo', { bind: function (el, binding, vnode) { var s = JSON.stringify el.innerHTML = 'name: ' ...
分类:其他好文   时间:2021-01-08 10:52:25    阅读次数:0
806条   1 2 3 4 ... 81 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!