动态绑定v-model

Posted 黄鹂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态绑定v-model相关的知识,希望对你有一定的参考价值。

<template>
    <div class="pieAll" >
        <template v-for="(item, index) in testData.data">
            <!--按钮组-->
            <div id="btnBox">
                <div>
                    <ul>
                        <template v-for="items in item.event">
                            <li @click=‘getEventName(items)‘ :data-id="items.eventName">
                                <!--<span :class="className"></span>-->
                                <a href="javascript:;">{{items.className}}</a>
                            </li>
                        </template>
                    </ul>
                </div>
                <div></div>
                <div><input type="text" v-model="search[index]" class="search" placeholder="请输入内容"></div>
            </div>
            <!--handsontable展示-->
            <div :id="item.componentId" v-show=‘hotSettings‘></div>
            <!--搜索框-->

        </template>
        <div>

        </div>
    </div>
</template>
data(){
return {
btn:[],
routers: [],
hotSettings: {},
isShowImport: false,
objHot:‘‘,
editData:[],// 修改的位置

testData:‘‘,// 测试数据
isActive:false,// 是否显示搜索框,
search:[]
}
},

在data中定义一个空的数组;

在模板中v-model中,定义好即可;

这只是其中的一种,我觉得还应该有更好的方法,希望大家指出~~

以上是关于动态绑定v-model的主要内容,如果未能解决你的问题,请参考以下文章

动态绑定v-model

Vue动态添加v-model绑定及获取其返回数据

如何在 vue 中绑定“v-model”属性?

Vue3 数据双向绑定与动态传值响应

9、Vue3 多个 v-model 绑定

v-bind 和v-model 的区别