vue添加class类名
Posted BadGirl_Xiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue添加class类名相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <title></title> <script src="https://cdn.jsdelivr.net/npm/vue"></script> </head> <body> <div id="app"> <ul> <li v-for="item in tabs" :class="[classA, {classB: isB, classC: isC}]"> {{ item.text }} </li> </ul> </div> <script type="text/javascript"> new Vue({ el:‘#app‘, data: { classA: ‘A‘, isB: false, isC: true, tabs: [{ text:‘巴士‘ },{ text:‘快车‘ },{ text:‘专车‘ },{ text:‘顺风车‘ },{ text:‘出租车‘ },{ text:‘代驾‘ }] } }) </script> <style type="text/css"> .A{ color: red } .classC{ text-decoration: underline; } .classB{ font-weight: bold } </style> </body> </html>
以上是关于vue添加class类名的主要内容,如果未能解决你的问题,请参考以下文章