How can vue.js add parameters to dynamic attributes

requirements: the data needs to be planned as 26 kinds of data of amurz.
clipboard.png

clipboard.png
a-z 26

clipboard.png
an error will be reported here, but in should be followed by a dynamic attribute or variable. What should I do?

Mar.12,2021

there is no way. Under a vue component, dynamic attributes will correspond to only one value
only through the method
frendSortMethod (str) {

....

}
in addition, dynamic attributes can be used as proxies if you want to add something, but it has nothing to do with your code, you can refer to

time: {
    get () {
        return this.inputForm 
    }
    set (value) { 
        this.inputForm = value
    }
}

I guess you need a filter: ide/filters.html" rel=" nofollow noreferrer "> https://cn.vuejs.org/v2/guide.


Thank you for the invitation!
if you want me, I will not use parameters, but use the properties in data as parameters

{{o.name}}

</div> </template>
Menu