iview Radio和v-for一起使用

v-for

根据一个数组的选项列表进行渲染
(item,key,index) in arr:item是数组对应的一个item,key是键值,index是索引值。

代码

template:

  
    

组件中一定要有:key
script

 export default {
        data () {
            return {
                value9: 1000,
                value10: 100,
                animal: '爪哇犀牛',
                animals:['金斑蝶','爪哇犀牛','印度黑羚']
                
            }
        },
        methods:{
            test(){
                this.$router.push("bar");
            }
        },
        mounted:function(){
            this.axios.get('http://127.0.0.1:8081/'}),{
         
        })
          .then(function(res){
            console.log(res.data)
                  //控制台打印请求成功时返回的数据
             
          })
          .catch(function(err){
            if(err.response) {
              console.log(err.response)
                //控制台打印错误返回的内容
            }
               
          })

        }
    }

iview Radio和v-for一起使用_第1张图片

你可能感兴趣的:(javascript,java,web开发)