miniprogram-setup
Version:
25 lines (21 loc) • 517 B
text/typescript
import { ComponentWithSetup, onDetached, onError, onMoved, onReady } from '@/index'
ComponentWithSetup({
setup() {
let lifecycleName = 'attached'
onReady(async () => {
lifecycleName = await 'ready'
})
onMoved(async () => {
lifecycleName = await 'moved'
})
onDetached(async () => {
lifecycleName = await 'detached'
})
onError(async () => {
lifecycleName = await 'error'
})
return () => ({
lifecycleName,
})
},
})