Skip to content

detached

ts
import { defineComponent, detached } from '@52css/mp-vue3'

defineComponent({
  properties: {},
  setup() {
    detached(() => {
      console.log("🚀 ~ detached ~ detached:", detached)
    })
  }
});