生物怪獸
2018-08-13 14:02:15
HTML頁(yè)<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><style type="text/css">? ? ? ?[v-cloak]{? ? ? ? display: none;? ? ? ?}</style></head><body><div id="app" v-cloak>? ? ? ?<div class="main" v-clickoutside="handleClose">? ? ? ? ? ? ? ? ? <button @click="show =!show">點(diǎn)擊顯示下拉菜單</button>? ? ? ? ? ? ? ? ? <div class="dropdown" v-show="show">? ? ? ? ? ? ? ? ? ? ? ? ? ?<p>下拉框內(nèi)容點(diǎn)擊外側(cè)區(qū)域可關(guān)閉</p>? ? ? ? ? ? ? ? ?</div>? ? ? </div>??</div><script type="text/javascript" src="./vue.js"></script><script type="text/javascript" src="./index.js"></script><script type="text/javascript" src="chickoutside.js"></script></body></html>index頁(yè)var app =new Vue({? ? ? ? ?el:'#app',? ? ? ? ?data:? {? ? ? ? ? ? ? ?show:false? ? ? ?},? ? ? ?methods:{? ? ? ? ? ? ? ?handleClose:function(){? ? ? ? ? ? ? ? ? ? ? ?this.show=false;? ? ? ?}? }});clickoutside頁(yè)Vue.directive('clickoutside',{? ? ? ? ? bind:function(el,binding,vnode){? ? ? ? ? ? ? ? ?function documentHandler (e){? ? ? ? ? ? ? ? ? ? ? ? if (el.contains(e.target)) {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?return false;? ? ? ? ? ? ? ? ? ? ? ? ?}? ? ? ? ? ? ? ? ? ? ? ? ?if (binding.expression) {? ? ? ? ? ? ? ? ? ? ? ? ? ? ? binding.value(e);? ? ? ? ? ? ? ? ? ? ? ? }? ? ?}? ? ? ? ? el._vueClickOutside_=documentHandler;? ? ? ? ?document.addEventListener('click',documentHandler); },? ? ? ? ?unbind:function(el,binding){? ? ? ? ? ? ? ? ? ? ? ? ? ? document.removeEventListener('click',el._vueClickOutside_);? ? ? ? ? ? ? ? ? ? ? ? ? ? ?delete el._vueClickOutside_;? ? ? ? ?}});
1 回答


pardon110
TA貢獻(xiàn)1038條經(jīng)驗(yàn) 獲得超227個(gè)贊
全局自定義指令,書(shū)寫(xiě)位置需要在vue實(shí)例創(chuàng)建之前使用。換句話來(lái)講,Vue.directive(...)部分,你應(yīng)該寫(xiě)在new Vue 代碼之前。
添加回答
舉報(bào)
0/150
提交
取消