vue v-bind v-on
Posted chengfengchi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue v-bind v-on相关的知识,希望对你有一定的参考价值。
v-bind绑定属性不需要加""""
可简写为一个":"
<input type="" name="" :value="msg" :title=‘msg‘>
<input type="" name="" v-bind:value="msg" v-bind:title=‘msg‘>
也可以加拼接字符串
<input type="" name="" v-bind:value="msg" v-bind:title="msg+‘1222‘">
两个变量拼接
<input type="" name="" v-bind:value="msg+msgs" v-bind:title=‘msg‘>
简写@:click
<input type="button" name="" v-on:click=‘show‘>
<script type="text/javascript">
var vm = new Vue(
el:‘#app‘,
data:
‘msg‘:‘程逢s池‘,
‘msgs‘:‘msg‘,
,
methods:
show:function()
alert(11)
)
</script>
以上是关于vue v-bind v-on的主要内容,如果未能解决你的问题,请参考以下文章
[Vue] Update Attributes, Classes and Styles in Vue.js with v-bind