Vue进阶(幺伍玖):动态样式设置
【摘要】 需求
在Vue项目开发过程中,需要根据按钮数量动态设置icon元素宽度。
分析
在el-col标签内,若只展示1个icon元素的话,则设置宽度为100%; 若显示2个icon元素的话,则设置宽度为50%; 以此类推…
解决方法
<el-col v-for="(btn, index) in btnArr" :key="index" :style="{width:...
需求
在Vue
项目开发过程中,需要根据按钮数量动态设置icon
元素宽度。
分析
在el-col
标签内,若只展示1个icon
元素的话,则设置宽度为100%;
若显示2个icon
元素的话,则设置宽度为50%;
以此类推…
解决方法
<el-col v-for="(btn, index) in btnArr" :key="index" :style="{width: multiWidth}">...</el-col>
<script>
...
computed: {
multiWidth () {
switch (option.length) { case 1: return 100 + '%' case 2: return 50 + '%' case 3: return 33 + '%' case 4: return 25 + '%'
}
}
}
</script>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
有关computed,详参博文:
《Vue进阶(八十四):vue中Computed 和 Watch的使用和区别》
《Vue进阶(二十八):浅析Vue中computed与method的区别》。
也可以考虑使用class
属性实现样式动态设置。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 测试实例</title>
<script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
<style>
.text-danger {
width: 100px;
height: 100px;
background: red;
}
.active {
width: 100px;
height: 100px;
color: green;
}
</style>
</head>
<body>
<div id="app">
<div v-bind:class="[isTest ? errorClass : '',isActive ? activeClass : '']">ceshi</div>
</div>
<script>
new Vue({
el: '#app',
data: { isActive: true,
isTest:true, activeClass: 'active', errorClass: 'text-danger'
}
})
</script>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
文章来源: shq5785.blog.csdn.net,作者:No Silver Bullet,版权归原作者所有,如需转载,请联系作者。
原文链接:shq5785.blog.csdn.net/article/details/107200928
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)