Jon*_*Sud 2 vue.js vue-composition-api
如何在 vue 组合 api 中使用activated和deactivated保持活动事件?
我在文档中找不到任何参考资料
对于 vue 组合 api - 您仍然可以访问activated/deactivatedvue 中的生命周期方法,包括vue-next.
我相信该库vue-composition-api支持激活/停用的方法,但未添加到文档中。
import {onActivated, onDeactivated} from "vue"
export default {
setup() {
onActivated(() => {
// ...
})
onDeactivated(() => {
// ...
})
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
869 次 |
| 最近记录: |