Vue JS 动态 html v-model 绑定

Vue JS dynamic html v-model binding

我已经在主 MVC 应用程序中集成了 Vue Js。我有一个要求,其中在某些地方,动态 html 正在从局部视图加载。我想将 vue js v-model 绑定到这个动态 html 中。 例如,在我的局部视图中,我有:

<input type="text" id="firstName" v-model="user.firstName" />

现在,当我从部分视图中获取 html 并通过 v-html 或 jquery html('') 加载它时,它不是绑定 vue js 模型。

请指导。

我设法解决了它:

const vue2 = {                        
              template: nodeData.NodeProperties,
              el: "#app2"
             };
new Vue(vue2).$mount();