Vue.js在渲染组件后执行事件触发器?

时间:2016-01-25 16:33:03

标签: javascript vue.js

我在Vue.js中有一些自定义组件。我在其中一个组件中是一个选择列表,我想将其呈现为Chosen选择框。我在jQuery函数$("select").chosen()中使用它。

<template v-for="upload in uploads">
    <new-upload-container :index="$index" :upload="upload" v-if="isNewUpload"></new-upload-container>
    <existing-upload-container :index="$index" :upload="upload" v-if="isExistingUpload"></existing-upload-container>
</template>

将数据添加到Vue实例中的uploads绑定数组后,视图将使用该组件的实例进行更新。不幸的是,当我尝试在select字段上实例化Chosen时,它不起作用。

我不确定在将项目添加到DOM实际更新的uploads绑定数组后是否需要很短的时间。

<template id="existing-upload-container">

      <select name="beats[@{{ index }}][existing_beat]" class="existing-beats">
           <option selected="selected" value="">-- Select a linked beat --</option>
                  @foreach ($beats as $beat)
                   <option value="{{$beat->id}}">{{$beat->name}}</option>
                  @endforeach
       </select>

    </template>

是否有一个事件在组件完全呈现后触发?

4 个答案:

答案 0 :(得分:10)

正确的方法是custom directive

<select v-chosen name="beats[@{{ index }}][existing_beat]" class="existing-beats">
//insert/require() the following before the creation of your main Vue instance
Vue.directive("chosen",{
  bind: function(){
    $(this.el).chosen();
  }
})

编辑:指令语法在Vue 2中更改。*:

Vue.directive("chosen",{
  bind: function(el){
    $(el).chosen();
  }
})

答案 1 :(得分:9)

您可以在组件中尝试两种方法,具体取决于哪种方法适用于您的包。在Vue对象中:

{
    ready:function(){
        // code here executes once the component is rendered
        // use this in the child component
    },
    watch: {
        uploads:function(){
            //code here executes whenever the uploads array changes 
            //and runs AFTER the dom is updated, could use this in
            //the parent component
        }
    }
}

答案 2 :(得分:1)

使用mounted回调并在那里检查代码中的数据状态。

答案 3 :(得分:0)

这样做的好方法是将Chosen插件包装在Vue组件中,详见here