petstore-frontend/src/composables/useNavigator.js

14 lines
221 B
JavaScript

import { openAppPage } from '../utils/globalState.js'
export const useNavigator = () => {
const goPage = (page) => {
openAppPage(page)
}
return {
goPage,
navigateTo: openAppPage,
openAppPage
}
}