最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

vue基礎(chǔ)之v-bind屬性、class和style用法分析

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:00:12
文檔

vue基礎(chǔ)之v-bind屬性、class和style用法分析

vue基礎(chǔ)之v-bind屬性、class和style用法分析:本文實(shí)例講述了vue基礎(chǔ)之v-bind屬性、class和style用法。分享給大家供大家參考,具體如下: 一、屬性 屬性: v-bind:src= width/height/title.... 簡(jiǎn)寫: :src= 推薦 <img src={{url}} alt=> 效果能出來(lái),但是會(huì)報(bào)一
推薦度:
導(dǎo)讀vue基礎(chǔ)之v-bind屬性、class和style用法分析:本文實(shí)例講述了vue基礎(chǔ)之v-bind屬性、class和style用法。分享給大家供大家參考,具體如下: 一、屬性 屬性: v-bind:src= width/height/title.... 簡(jiǎn)寫: :src= 推薦 <img src={{url}} alt=> 效果能出來(lái),但是會(huì)報(bào)一

本文實(shí)例講述了vue基礎(chǔ)之v-bind屬性、class和style用法。分享給大家供大家參考,具體如下:

一、屬性

屬性:

v-bind:src=""
width/height/title....

簡(jiǎn)寫:

:src=""    推薦

<img src="{{url}}" alt="">    效果能出來(lái),但是會(huì)報(bào)一個(gè)404錯(cuò)誤
<img v-bind:src="url" alt="">    效果可以出來(lái),不會(huì)發(fā)404請(qǐng)求

window.onload=function(){
 new Vue({
 el:'#box',
 data:{
 url:'https://www.baidu.com/img/bd_logo1.png',
 w:'200px',
 t:'這是一張美麗的圖片'
 },
 methods:{
 }
 });
 };
<div id="box">
 <!--<img src="{{url}}" alt="">-->
 <img :src="url" alt="" :width="w" :title="t">
 </div>

二、class和style

:class=""     v-bind:class=""
:style=""     v-bind:style=""
:class="[red]"     red是數(shù)據(jù)
:class="[red,b,c,d]"

<!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:{
 claOne:'red',//這里的red是樣式class類名
 claTwo:'blue'
 },
 methods:{
 }
 });
 };
 </script>
</head>
<body>
 <div id="box">
 <!--這里的calOne,calTwo指data里的數(shù)據(jù)-->
 <strong :class="[claOne,claTwo]">文字...</strong>
 </div>
</body>
</html>

:class="{red:true, blue:false}"http://這里是{ 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]"

.red{
 color: red;
 }
<div id="box">
 <strong :style="{color:'red'}">文字...</strong>
 </div>

:style="[c,d]"

注意: 復(fù)合樣式,采用駝峰命名法

<!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'}//注意: 復(fù)合樣式,采用駝峰命名法
 },
 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>

希望本文所述對(duì)大家vue.js程序設(shè)計(jì)有所幫助。

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

vue基礎(chǔ)之v-bind屬性、class和style用法分析

vue基礎(chǔ)之v-bind屬性、class和style用法分析:本文實(shí)例講述了vue基礎(chǔ)之v-bind屬性、class和style用法。分享給大家供大家參考,具體如下: 一、屬性 屬性: v-bind:src= width/height/title.... 簡(jiǎn)寫: :src= 推薦 <img src={{url}} alt=> 效果能出來(lái),但是會(huì)報(bào)一
推薦度:
標(biāo)簽: VUE 分析 屬性
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top