当前位置:   article > 正文

Vue的常见指令

Vue的常见指令

目录

1.v-bind

2. class绑定

3.style绑定

4.v-if/v-show

 


1.v-bind

        v-bind指令用于绑定属性 可以简写成 “   :”

        它的作用就是我们可以动态的定义属性的值,比如常见的<img src = "1.jpg">

        我们如果想要修改图片就需要获取到DOM对象,然后再重新填充,但是如果使用v-bind,

        我们就可以动态的生成src属性值。

下面我们将实现图片切换的效果:

  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <div id="app" >
  10. <img v-bind:src = "path" :style="{width:width , height:height}">
  11. <br>
  12. <button @click = "change()">切换图片</button>
  13. </div>
  14. <script type="text/javascript" src="vue.global.js"></script>
  15. <script>
  16. // 1.创建app
  17. const app = Vue.createApp({
  18. // data: option api
  19. data: function() {
  20. return {
  21. path:"images/1.jpg",
  22. width:100,
  23. height:100
  24. }
  25. },
  26. methods:{
  27. change(){
  28. if(this.path==="images/1.jpg"){
  29. this.path = "images/2.jpg"
  30. }else{
  31. this.path = "images/1.jpg"
  32. }
  33. }
  34. }
  35. })
  36. // 2.挂载app
  37. app.mount("#app")
  38. </script>
  39. </body>
  40. </html>

它的逻辑关系如下:

所以说,vue主要是实现对数据的操作,而js是对DOM对象的操作

 

2. class绑定

        class是表示类选择器,常用的还有id选择器等。

        v-bind同样可以绑定class,只是写法略有不同。

        接下来,我们实现经常在网页上看见的多选项选择时,选到哪个,哪个就会高亮显示。

        代码如下:

  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <style>
  10. li{
  11. width: 50px;
  12. height: 25px;
  13. display: block;
  14. float: left;
  15. background-color: #999;
  16. border: 1px solid;
  17. padding-left: 5px;
  18. }
  19. .red{
  20. background-color: red;
  21. }
  22. </style>
  23. <div id="app">
  24. <ul>
  25. <li :class="{red:num==1}" @click = "change(1)">选项1</li>
  26. <li :class="{red:num==2}" @click = "change(2)">选项2</li>
  27. <li :class="{red:num==3}" @click = "change(3)">选项3</li>
  28. </ul>
  29. </div>
  30. <script type="text/javascript" src="vue.global.js"></script>
  31. <script>
  32. // 1.创建app
  33. const app = Vue.createApp({
  34. // data: option api
  35. data: function() {
  36. return {
  37. num:1
  38. }
  39. },
  40. methods:{
  41. change(num){
  42. this.num = num
  43. }
  44. }
  45. })
  46. // 2.挂载app
  47. app.mount("#app")
  48. </script>
  49. </body>
  50. </html>

        执行逻辑如下:

3.style绑定

        style表示样式,同样我们也可以用vue绑定style,实现样式属性的动态生成。

我们实现一个按钮控制一个div盒子的长宽高,颜色等样式,示例如下:

  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <style>
  10. li{
  11. width: 40px;
  12. height: 20px;
  13. border: 2px , solid;
  14. background-color: #999;
  15. float: left;
  16. display: block;
  17. }
  18. #context{
  19. clear: both;
  20. border: 1px solid;
  21. width: 100px;
  22. height: 100px;
  23. background-color: aqua;
  24. margin-left: 40px;
  25. }
  26. li:hover{
  27. background-color: red;
  28. }
  29. </style>
  30. <div id="app">
  31. <ul>
  32. <li @click = "change(0)">变宽</li>
  33. <li @click = "change(1)">变高</li>
  34. <li @click = "change(2)">变色</li>
  35. <li @click = "change(3)">隐藏</li>
  36. <li @click = "change(4)">重置</li>
  37. </ul>
  38. <div id="context" :style="{width:width , height:height,'background-color':color,display:none}">
  39. </div>
  40. </div>
  41. <script type="text/javascript" src="../vue.global.js"></script>
  42. <script>
  43. // 1.创建app
  44. const app = Vue.createApp({
  45. // data: option api
  46. data: function() {
  47. return {
  48. width:100 ,
  49. height:100 ,
  50. color:'aqua' ,
  51. none:'block'
  52. }
  53. },
  54. methods:{
  55. change(num){
  56. if(num==0){
  57. this.width = this.width+10
  58. }
  59. if(num==1){
  60. this.height = this.height+10
  61. }
  62. if(num ==2){
  63. this.color = 'red' ;
  64. }
  65. if(num==3){
  66. this.none = 'none' ;
  67. }
  68. if(num==4){
  69. this.width = 100 ;
  70. this.height = 100 ;
  71. this.color = 'aqua';
  72. this.none = 'block'
  73. }
  74. }
  75. }
  76. })
  77. // 2.挂载app
  78. app.mount("#app")
  79. </script>
  80. </body>
  81. </html>

 实现逻辑:

效果展示:

4.v-if/v-show

        v-if 指令 条件渲染.如果条件为true,那么它会生成一个DOM元素并且插入;

        如果为false,那么直接连DOM元素都不生成。

        v-show作用和v-if一样,只是当它为true或者false都会生成DOM对象;

        只是当然为false时,会把DOM对象隐藏起来。

示例:实现点击哪个按钮显示对应的内容,其他的内容会被隐藏,效果如下:

实现代码如下:

  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>使用v-if实现元素的显示与隐藏</title>
  7. </head>
  8. <body>
  9. <style>
  10. .red{
  11. background-color: red;
  12. }
  13. ul , li{
  14. float: left;
  15. display: block;
  16. margin-left: 10px;
  17. background: color #999;
  18. }
  19. li{
  20. border: 1px red;
  21. height: 30px;
  22. width: 100px;
  23. text-align: center;
  24. }
  25. li:hover{
  26. background-color: red;
  27. }
  28. #context{
  29. clear: both;
  30. }
  31. </style>
  32. <div id="title">
  33. <ul>
  34. <li :class="{red:flag==0}" @click ="change(0)">清纯男大</li>
  35. <li :class="{red:flag==1}" @click="change(1)">油腻骚男</li>
  36. <li :class="{red:flag==2}" @click="change(2)">怀院校草</li>
  37. </ul>
  38. <ul id="context">
  39. <li v-if="flag==0">刘驰宇</li>
  40. <li v-if="flag==1">李杭涛</li>
  41. <li v-show="flag==2">黄嘉乐</li>
  42. </ul>
  43. </div>
  44. <script type="text/javascript" src="../vue.global.js"></script>
  45. <script>
  46. // 1.创建app
  47. const app = Vue.createApp({
  48. // data: option api
  49. data: function() {
  50. return{
  51. flag : 0
  52. }
  53. },
  54. methods:{
  55. change(flag){
  56. this.flag = flag;
  57. }
  58. }
  59. })
  60. // 2.挂载app
  61. app.mount("#title")
  62. </script>
  63. </body>
  64. </html>

主要逻辑如下:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/826516
推荐阅读
相关标签
  

闽ICP备14008679号