生命周期experiment

WARNING

当前完整的生命周期还未全部实现,属于实验性功能,开放#[before_mount], #[mounted]

#[before_mount]

在组件实例初始化完成之后立即调用。使用#[before_mount]标注在方法上。

写法

1impl MyView{
2    #[before_mount]
3    fn before_mount(){
4        println!("before mount!");
5    }
6}

#[mounted]

实例初始化完成后调用的选项

写法

1impl MyView{
2    #[mounted]
3    fn mounted(){
4        println!("mounted!");
5    }
6}

#[before_update]

在实例更新前调用

#[updated]

在实例更新后调用