当前位置:   article > 正文

Vue组件的样式绑定和事件监听处理_对vue组件绑定多个监听函数的优雅 写法

对vue组件绑定多个监听函数的优雅 写法

一、Vue组件的样式绑定

1、为Html标签绑定class属性:v-bind,为class属性绑定一个对象,在对象中可以设置对象是否可用

1.1、绑定class属性,由绑定的变量来决定应用哪个样式

1.2、可以将样式直接设置成Vue组件中的数据对象

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://unpkg.com/vue@next"></script>
</head>
<style>
    .blue{
     
        color: blue;
    }
    .red{
     
        color: red;
    }
    .green{
     
        color: green;
    }
    .font{
     
    font-size: 30px;
    }
</style>
<body>
    <div id="app">
        <div v-bind:class="{blue:isblue,red:isred}">
              西安
        </div>
        <div v-bind:class="[greenClass,fontClass]">
            郑州
        </div>
        <div :class="style">
            武汉
        </div>
    </div>
    <script>
        const obj={
     
            data(){
     
                return{
     
                    style:{
     
                     blue:true,
                     red:false
                    },
                        isblue:true,
                        isred:false,
                        greenClass:'green',
                        fontClass:'font',
                        textColor:'red',
                        textFont:'35px'
                }
            }
                }
        Vue.createApp(obj).mount('#app')
    </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
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64

注意:v-bind可以缩写为: <div :class=""></div>

在这里插入图片描述

2、绑定内联样式

<div :style=""></div>
  • 1
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://unpkg.com/vue@next"></script>
</head>
<style>
    .blue{
     
        color: bl
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/222658
推荐阅读
相关标签
  

闽ICP备14008679号