v-bind与v-on使用案例详解
程序员文章站
2022-03-18 20:34:34
...
这次给大家带来v-bind与v-on使用案例详解,v-bind与v-on使用注意事项有哪些,下面就是实战案例,一起来看一下。
v-bind 指令用于响应地更新 HTML 特性 形式如:v-bind:href 缩写为 :href;
v-on 指令用于监听DOM事件 形式如:v-on:click 缩写为 @click;
<body> <p id="test"> <img v-bind:src="src"> <a v-bind:href="url" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >百度一下</a> <a :href="url" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >百度一下</a> <a href="{{url}}" rel="external nofollow" >百度一下</a> <a v-on:click="update()" href="#" rel="external nofollow" rel="external nofollow" >更改图片</a> <a @click="update()" href="#" rel="external nofollow" rel="external nofollow" >更改图片</a> </p> <script type="text/javascript"> new Vue({ el: '#test', data: { url: "https://www.baidu.com", src: "img/spring.jpg"16 17 18 }, methods: { update: function(){ this.src = "img/summer.jpg"; } } }) </script> </body>
note: vue.js 1.0版本后才有的这两个指令
v-bind,v-on的缩写
构建单页应用(SPA )时,Vue.js 会管理所有的模板,此时 v- 前缀也没那么重要了。因此Vue.js 为两个最常用的指令 v-bind 和v-on 提供特别的缩写:
下面给大家介绍下v-bind缩写:
<!-- 完整语法 --> <a v-bind:href="url" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ></a> <!-- 缩写 --> <a :href="url" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" ></a> <!-- 完整语法 --> <button v-bind:disabled="someDynamicCondition">Button</button> <!-- 缩写 --> <button :disabled="someDynamicCondition">Button</button>
v-on缩写:
<!-- 完整语法 --> <a v-on:click="doSomething"></a> <!-- 缩写 --> <a @click="doSomething"></a>
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
vuex+localstorage动态监听storage步骤详解
以上就是v-bind与v-on使用案例详解的详细内容,更多请关注其它相关文章!
上一篇: 那您也做过弊吗
推荐阅读
-
Android APK 反编译工具使用详解(附图与apk反编译工具下载)
-
详解Nginx服务器中map模块的配置与使用
-
对sklearn的使用之数据集的拆分与训练详解(python3.6)
-
PHP设计模式之中介者模式(Mediator Pattern)入门与应用案例详解
-
PHP设计模式之观察者模式入门与应用案例详解
-
android中ProgressDialog与ProgressBar的使用详解
-
vue-cli 组件的导入与使用教程详解
-
Python for循环与range函数的使用详解
-
HTTP长连接与短连接使用方法及测试详解
-
angular2中router路由跳转navigate的使用与刷新页面问题详解