這篇文章主要介紹了使用Vue 綁定單一或多個Class 名稱的實例程式碼,非常不錯,具有參考借鑒價值,需要的朋友參考下吧
一、用變數形式綁定單一Class 名稱
在vue 中綁定單一class 名還好說,直接寫就可以了
<template> <p id="app"> <!-- 因为是自定义属性,所以要用到 v-bind ,简写为 : --> <!-- 3.将 box 绑定给 p --> <p :class="box"></p> </p> </template> <script> export default { name: 'app', data () { return { // 2.在 data 中把 yellow 赋给 box box: 'yellow' } } } </script> <style> /* 1.在样式表中写好样式 */ .yellow{ width: 200px; height: 200px; background: #ff0; } </style>
用Vue 綁定單一Class 名稱
二、用陣列形式綁定多個Class 名稱
例如我們想再給這個p 加個陰影
在style 中寫好樣式
.shadow{ box-shadow: 10px 10px 5px 0 #999; }
在data 中繼續加入資料物件
<script> export default { name: 'app', data () { return { box: 'yellow', shadow:'shadow' } } } </script>
在標籤中以陣列的形式綁定Class 名
<template> <p id="app"> <p :class="[box,shadow]"></p> </p> </template>
就OK 了。
以陣列形式綁定多個Class 名稱
#三、以json 形式綁定多個Class 名稱
該方法方便用於同時新增多個Class 名稱時,在某種情況下判斷顯示哪種樣式
先寫好樣式
<style> .yellow{ width: 200px; height: 200px; background: #ff0; } .shadow{ box-shadow: 10px 10px 5px 0 #999; } </style>
在data 中加入數字對象,用來做判斷
<script> export default { name: 'app', data () { return { show1:true, show2:false } } } </script>
以json 的形式綁定到class 中,透過布林值改變show1 與show2 的值,來控制p 的狀態
<template> <p id="app"> <p :class="{yellow:show1,shadow:show2}"></p> </p> </template>
用json 形式綁定多個Class
ps:vue解決跨域問題
改變config /index.js檔
proxyTable: { // 请求到 '/device' 下 的请求都会被代理到 target: http://debug.xxx.com 中 '/v1/*': { target: 'https://api.tiaotiao5.com', secure: true, // 接受 运行在 https 上的服务 changeOrigin: true } }
以上是我總結的全部內容,希望會對大家有幫助
相關文章:
以上是使用Vue如何設定多個Class的詳細內容。更多資訊請關注PHP中文網其他相關文章!