1export function useCanGoBack() { 2 const canGoBack = shallowRef(false) 3 4 const router = useRouter() 5 6 onMounted(() => { 7 canGoBack.value = router.options.history.state.back !== null 8 }) 9 10 return canGoBack 11}