zoukankan      html  css  js  c++  java
  • vue的生命周期

    vue实例生命周期支持vue实例的生命周期如下:beforeCreatecreatedbeforeMountmounted

    beforeUpdateupdatedactivated

    页面生命周期不论是app还是小程序,生命周期是非常重要的知识点onLoad 监听页面加载onShow 监听页面显示onReady 监听页面初次渲染完成onHide 监听页面隐藏onUnload 监听页面卸载

    onPullDownRefresh 监听用户下拉动作onReachBottom 页面上拉触底事件的处理函数onShareAppMessage 用户点击右上角分享onPageScroll 监听页面滚动onTabItemTap 当前是tab页时file

    file

    setTimeout(function(){
    
    },3000);

    file

    file

    file

    file

    file

    fileclass

    <view :class="{ active: isActive }">111</view>
    
    <view class="static" v-bind:class="{active: isActive, 'text-danger': hasError}">222</view>
    
    <view class="static" :class="[activeClass, errorClass]">333</view>
    
    <view class="static" v-bind:class="[isActive ? activeClass : ' ', errorClass]">444</view>
    
    <view class="static" v-bind:class="[{active: isActive}, errorClass]">555</view>

    style:

    <view v-bind:style="{color : activeColor, fontSize: fontSize   'px' }">666</view>
    
    <view v-bind:style="[{color: activeColor, fontSize: fontSize 'px'}]">777</view>

    file

    <template>
     <scroll-view class="menus">
      <view v-for="(menu, index) in menus" :class="[index == currentIndex ? 'menuActive' : ' ' ]"> {{ menu }} </view>
     </scroll-view>
    </template>

    file

    若本号内容有做得不到位的地方(比如:涉及版权或其他问题),请及时联系我们进行整改即可,会在第一时间进行处理。

    请点赞!因为你们的赞同/鼓励是我写作的最大动力!

    欢迎关注达叔小生的简书!

    这是一个有质量,有态度的博客

    博客

  • 相关阅读:
    Redis闪退解决办法
    excel导入数据库,存在则更新不存在添加
    sql取逗号前后数据与批量修改某一字段某一值
    sql查询一个字段不同值并返回
    表格加边框
    图论算法-求(有向)图中任意两点间所有路径
    Java实时监控日志文件并输出 转
    ResultSet的记录数  转
    eclipse中显示“编辑器中没有main类型
    压缩
  • 原文地址:https://www.cnblogs.com/dashucoding/p/11932288.html
Copyright © 2011-2022 走看看