我已经在主要的MVC应用程序中集成了Vue Js。我有一个要求,在某个地方,动态html从局部视图加载。我想将vue js v模型绑定到此动态html中。 例如,在我的局部视图中,我有:
<input type="text" id="firstName" v-model="user.firstName" />
现在,当我从局部视图获取html并通过v-html或jquery html('')加载它时,它没有绑定vue js模型。
请对此进行指导。
答案 0 :(得分:0)
我设法通过:
解决了这个问题const vue2 = {
template: nodeData.NodeProperties,
el: "#app2"
};
new Vue(vue2).$mount();