摘要:
子组件: <view class="" @click="zi">子组件给父传</view> methods:{ zi(){ this.$emit('myZi',this.age) } } 父组件: <test122 @myZi='getZi'></test122> <view class="">{{ 阅读全文
摘要:
父亲: <test122 :title='title' :catename="catename"></test122> data() { return { num:1, title:'我是你明哥哥', catename:['红豆','花生','小米'] } }, 子组件: <view class=" 阅读全文
摘要:
<navigator url="../contact/contact" open-type="switchTab">跳转至tabBar页面</navigator> <navigator url="../sss/sss" >跳转至sss 不是tabBar页面</navigator> <navigato 阅读全文
摘要:
<template> <view> <view class="content"> 我是message <text>我是text1</text> </view> <image v-for="(item,index) in imgArr" :src="item.image_src" @click="pI 阅读全文
摘要:
<button type="button" onclick="fn()">过滤filter</button> var a = [22,44,3,56]; //filter 过滤 function fn(){ var newArr = a.filter(function(e){ return e>30 阅读全文