0👍
According to the Template Compilation section in the docs,
<input v-model="inputVal">
is this render function:
function anonymous(
) {
with(this){
return _c('input', {
directives: [{
name: "model",
rawName: "v-model",
value: (inputVal),
expression: "inputVal"
}],
domProps: { "value": (inputVal) },
on: {
"input": function($event) {
if ($event.target.composing)
return;
inputVal=$event.target.value
}
},
})
}
}
I haven’t used render functions yet, so I hope this is what you need.
- [Vuejs]-How to get refs object in vue after an aspx page is submitted
- [Vuejs]-Getting unknown symbol in Mac OS when translating language in VueJs
Source:stackexchange.com