最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Vue - wrap HTML5 element - Stack Overflow

programmeradmin3浏览0评论

I want to create a ponent that wraps a textarea element. Its function is to add custom functionality and custom styling, but I don't want it to be scoped in its own scope - rather, the parent should be able bind to regular events like input.

Example of what is needed, but will not work (problem is highlighted in parent.vue):

area.vue:

<template>
    <textarea rows="1"></textarea>
</template>

<script>
    export default {
        mounted() {
            // do something...
        }
    }
</script>

<style scoped>
    textarea {
        height: 100%;
    }
</style>

parent.vue:

<template>
    <area @input="doSomething"></area>
</template>

<script>
    import Area from "./area.vue"

    export default {
        methods: {
            doSomething(){
                // NOT TRIGGERED!
                // `input` event is not passed over to parent scope
            }
        },
        ponents: {
            Area
        }
    }
</script>

I do not want to explicitly write in this.$emit calls into the ponent.

I want to create a ponent that wraps a textarea element. Its function is to add custom functionality and custom styling, but I don't want it to be scoped in its own scope - rather, the parent should be able bind to regular events like input.

Example of what is needed, but will not work (problem is highlighted in parent.vue):

area.vue:

<template>
    <textarea rows="1"></textarea>
</template>

<script>
    export default {
        mounted() {
            // do something...
        }
    }
</script>

<style scoped>
    textarea {
        height: 100%;
    }
</style>

parent.vue:

<template>
    <area @input="doSomething"></area>
</template>

<script>
    import Area from "./area.vue"

    export default {
        methods: {
            doSomething(){
                // NOT TRIGGERED!
                // `input` event is not passed over to parent scope
            }
        },
        ponents: {
            Area
        }
    }
</script>

I do not want to explicitly write in this.$emit calls into the ponent.

Share Improve this question asked Nov 23, 2016 at 20:33 OliverOliver 4,0912 gold badges22 silver badges36 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 8

You only need to add .native to @input.

Vue's v-on/@, when used on a ponent (without .native), only listens to custom events declared by emit.

you can pass methods from the parent to the child as props, i.e.

parent

<area :do-something="doSomething"></area>

child

# template
<textarea rows="1" @input="doSomething"></textarea>

# script
export default {
  props: ['doSomething'],
  ...

Unfortunately you can't do this, but you can cheat and get pretty close.

mounted() {
    var self = this;
    Object.keys(Event.prototype).forEach(function(ev) {
       self.$refs.text.addEventListener(ev.toLowerCase(), function(d) {
           self.$emit(ev.toLowerCase(), d);
           console.log("emitting", ev, d);
       })
   })
}

With this you get access to mousedown, mouseup, mouseover, mouseout, mousemove, mousedrag, click, dblclick, keydown, keyup, keypress, dragdrop, focus, blur, select and change events. Then in your parent template...

<my-textarea @keyup="update()" @change="somethingElse()"></my-textarea>

Here's the fiddle https://jsfiddle/rdjjpc7a/371/

发布评论

评论列表(0)

  1. 暂无评论