自定义指令一般用在很多地方都使用到的功能,把它封装成一个自定义指令.
注册全局的输入框默认选中功能
import Vue from 'vue'
import App from './App.vue' //主组件
import HelloWorld from './components/HelloWorld.vue' //Helloworld组件
import Home from './components/Home.vue' //Home组件
// 注册一个全局自定义指令 `v-focus 要定义在主JS创建Vue对象之前`
Vue.directive('focus', {
// 当被绑定的元素插入到 DOM 中时……
inserted: function (el) {
// 聚焦元素
el.focus()
}
})
/* 主JS创建Vue对象 */
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})
注册局部的输入框默认选中功能
<!--模板-->
<template>
<div name="users">
<input v-focus type="text">
<p v-myRed >哈哈</p>
</div>
</template>
<!--行为-->
<script>
export default {
name: 'users',
data () {
return {
}
},
directives: {
focus: {
// 指令的定义
inserted: function (el) {
el.focus()
}
},
// 自定义指令
myRed:{
inserted: function (el) {
el.style.color = "#908000";
}
}
}
}
</script>
<!--样式-->
<style>
</style>