組件生命周期

2020-12-29 10:53 更新

avm.js組件規(guī)范符合Web Components規(guī)范,生命周期遵循標準Web Components組件的生命周期。同時兼容Vue組件的生命周期。

所有支持的生命周期事件

單文件模式定義生命周期

<template>  
    <view>
        <text>Hello APP</text>
    </view>  
</template>  
<script>
    export default {  
        name: 'api-test',
        apiready() {
          // TODO
        },
        beforeRender: function (){
          // TODO
        }
    }
</script>

單語言片段模式定義生命周期

class ApiTest extends Component {

    
    render() { }
    install() { }   
    installed() { }
    uninstall() { }
    beforeUpdate() { }
    afterUpdate() { }
    beforeRender() { }


}
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號