import { defineComponent } from 'vue' import { useAtom } from '@xoid/vue' const CounterVue = defineComponent(() => { const count = useAtom($count) // same `$count` above return () => ( <>