一个默认focus的input组件vue

<template>
    <input class="edit-div hover_focus"
        ref="input"
         v-model="innerText"
         contenteditable="true"
         @blur="shuchu"
         @input="changeText"/>
</template>
<script type="text/ecmascript-6">
    export default{
        name: 'editDiv',
        props: {
            value: {
                type: String,
                default: ''
            },
            initFocus: {
                type: Boolean,
                default: false,
            }
        },
        mounted(){
            if (this.initFocus) {
                let obj = this.$refs.input;
                this.$refs.input.focus()  
                  var len = obj.value.length;
                    if (document.selection) {
                    var sel = obj.createTextRange();
                    sel.moveStart('character', len);
                    sel.collapse();
                    sel.select();
                    } else if (typeof obj.selectionStart == 'number'
                    && typeof obj.selectionEnd == 'number') {
                obj.selectionStart = obj.selectionEnd = len;
                }
            }
        },
        data(){
            return {
                innerText: this.value,
            }
        },
        watch: {
            'value'(){
                this.innerText = this.value;
            }
        },
        methods: {
            changeText(){
                this.$emit('input', this.innerText);
            },
            shuchu() {
                this.$emit('shuchu', this.innerText);
            }
        }
    }
</script>
<style lang="scss" scoped>
.hover_focus {
  border: 1px solid transparent;
  &:hover {
    border-color: #e0e0e0;
  }
  &:focus {
    outline: 1px solid #42b983;
  }
}
</style>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值