import { ref } from 'vue'; export function useDeveloper() { const num = ref(0); return { num }; }