码迷,mamicode.com
首页 > 其他好文 > 详细

vue自定义指令

时间:2018-06-02 22:51:26      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:nts   main   value   app   new   component   config   ntc   name   

1.main.js 文件中定义全局指令

import Vue from ‘vue‘
import App from ‘./App‘
Vue.config.productionTip = false

//定义全局指令
Vue.directive(focus‘,{
inserted:function(el){
el.focus()
}
})
/* eslint-disable no-new */
new Vue({
el: ‘#app‘,
components: { App },
template: ‘<App/>‘
})

2.页面引用和局部指令

<template>
<div>
全局指令:<input type="text" name="" id="" value="" v-focus/>
局部指令:<input type="text" name="" id="" value="" v-focus1/>
<p v-fontCss>自定义指令字体颜色</p>
</div>
</template>

<script>
export default {
name: ‘input1‘,
data() {
return {
msg: ‘子组件数据‘
}
},
directives:{
focus1:{
inserted:e1=>{
e1.focus()
}
},
fontCss:e1=>{
e1.style.color=‘red‘
}
}
}
</script>

<style>

</style>

vue自定义指令

标签:nts   main   value   app   new   component   config   ntc   name   

原文地址:https://www.cnblogs.com/qiyc/p/9127165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!