时间:2021-05-26
本文实例讲述了vue基础之v-bind属性、class和style用法。分享给大家供大家参考,具体如下:
一、属性
属性:
v-bind:src=""
width/height/title....
简写:
:src="" 推荐
<img src="{{url}}" alt=""> 效果能出来,但是会报一个404错误
<img v-bind:src="url" alt=""> 效果可以出来,不会发404请求
二、class和style
:class="" v-bind:class=""
:style="" v-bind:style=""
:class="[red]" red是数据
:class="[red,b,c,d]"
:class="{red:true, blue:false}"//这里是{ json}
<style> .red{ color: red; } .blue{ background: blue; } </style> <script src="vue.js"></script> <script> window.onload=function(){ new Vue({ el:'#box', data:{ }, methods:{ } }); }; </script><div id="box"> <strong :class="{red:true,blue:true}">文字...</strong> </div><!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title></title> <style> .red{ color: red; } .blue{ background: blue; } </style> <script src="vue.js"></script> <script> window.onload=function(){ new Vue({ el:'#box', data:{ a:true, b:false }, methods:{ } }); }; </script></head><body> <div id="box"> <strong :class="{red:a,blue:b}">文字...</strong> </div></body></html>data:{json:{red:a, blue:false}}:class="json"
官方推荐用法
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title></title> <style> .red{ color: red; } .blue{ background: blue; } </style> <script src="vue.js"></script> <script> window.onload=function(){ new Vue({ el:'#box', data:{ json:{ red:true, blue:true } }, methods:{ } }); }; </script></head><body> <div id="box"> <strong :class="json">文字...</strong> </div></body></html>style:
:style="[c]"
:style="[c,d]"
注意: 复合样式,采用驼峰命名法
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title></title> <style></style> <script src="vue.js"></script> <script> window.onload=function(){ new Vue({ el:'#box', data:{ c:{color:'red'},//这里的red是 class .red b:{backgroundColor:'blue'}//注意: 复合样式,采用驼峰命名法 }, methods:{ } }); }; </script></head><body> <div id="box"> <strong :style="[c,b]">文字...</strong> </div></body></html>:style="json"
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title></title> <style></style> <script src="vue.js"></script> <script> window.onload=function(){ new Vue({ el:'#box', data:{ a:{ color:'red', backgroundColor:'gray' } }, methods:{ } }); }; </script></head><body> <div id="box"> <strong :style="a">文字...</strong> </div></body></html>希望本文所述对大家vue.js程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
引子v-bind主要用于属性绑定,Vue官方提供了一个简写方式:bind,例如:一、概述v-bind主要用于属性绑定,比方你的class属性,style属性,v
使用v-bind:class或者v-bind:style或者直接通过操作dom来对其样式进行更改;1.v-bind:class||v-bind:style其中v
vue计算属性在模板中放入大量的逻辑会让模板过重且难以维护计算属性下所有函数可以放到computed中class与style绑定原始写法v-bind:class
前言在Vue.js版本:1.0.27,使用Vue.js中V-bind指令来绑定class和style时,Vue.js对其进行了增强。表达式结果出了字符串之外,还
本文介绍了Vue的Class与Style绑定,分享给大家,具体如下:绑定HTMLClass对象语法我们可以传给v-bind:class一个对象,以动态地切换cl