VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)

文章目录

  • 双向数据绑定
  • v-bind(v-bind:title简化写法为:title)
  • 设置类名 v-bind:class
  • 隐藏/显示元素,v-if和v-show
  • v-for
    • 遍历数组
    • 遍历对象
  • v-on:click 点击事件(简化语法@click)
  • 组件
  • 私有组件
  • 过滤器
    • 全局过滤器
    • 私有过滤器
  • 路由

双向数据绑定




  
  
  
  Document


  

{{ message }}

VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第1张图片

v-bind(v-bind:title简化写法为:title)




  
  
  
  Document


  







VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第2张图片

设置类名 v-bind:class




  
  
  
  Document
  


  
对象设置类名
数组设置类名
对象和数组设置类名

VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第3张图片

隐藏/显示元素,v-if和v-show




  
  
  
  Document
  


  
if
show

VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第4张图片

v-for

遍历数组




  
  
  
  Document
  


  
  • 元素:{{item}} 索引:{{index}}
  • VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第5张图片

    遍历对象

    
    
    
      
      
      
      Document
      
    
    
      
    
  • key-{{key}} value-{{value}} index-{{index}}
  • VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第6张图片

    v-on:click 点击事件(简化语法@click)

    
    
    
      
      
      
      Document
      
    
    
      
    
  • key-{{key}} value-{{value}} index-{{index}}
  • VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第7张图片
    点击按钮之后
    VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第8张图片

    组件

    
    
    
      
      
      
      Document
      
    
    
      
    

    VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第9张图片

    私有组件

    
    
    
      
      
      
      Document
      
    
    
      
    

    VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第10张图片

    过滤器

    全局过滤器

    
    
    
      
      
      
      Document
      
    
    
      
    
    {{ 'ABC' | toLowCase }}

    这里写图片描述

    私有过滤器

    
    
    
      
      
      
      Document
      
    
    
      
    
    {{ str | lowCase }}

    这里写图片描述

    路由

    
    
    
      
      
      
      Document
      
    
    
      
    
    国际新闻 国际新闻

    VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第11张图片

    VUE基本指令(v-model,v-html,v-text,v-bind,v-if,v-show,v-for,v-on:click,组件,过滤器)_第12张图片

    你可能感兴趣的:(1.3,VUE)