我在VUE JS無法html元素添加到父在Vue公司JS指令
Vue.directive('customDirective',{
bind(el,binding,vnode){
// need to get the parent
// append a div after the input element
}
})
一個全球性的指令,我有以下的HTML代碼。
<div class="parentDiv">
<input type="text" name="firstName" v-customDirective="Some text"/>
</div>
<div class="parentDiv"> is loading dynamically via jquery
。我需要獲取輸入標記的父項,並且需要在輸入標記後附加一些html。我曾嘗試使用parent(),但它顯示爲父級不是函數。有什麼建議麼 ?
何時將'parentDiv'添加到DOM? Vue創建之後? – Bert