vue-router#useRoute JavaScript Examples
The following examples show how to use
vue-router#useRoute.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: entry-client.js From vitedge with MIT License | 6 votes |
export function usePageProps() {
const { meta = {} } = useRoute() || {}
// Props reactivity in dev
if (import.meta.env.DEV) {
const pageProps = shallowReactive(meta.state || {})
watch(meta.hmr, () => {
for (const key of Object.keys(pageProps)) {
delete pageProps[key]
}
Object.assign(pageProps, meta.state || {})
})
return shallowReadonly(pageProps)
}
return shallowReadonly(meta.state || {})
}
Example #2
Source File: entry-server.js From vitedge with MIT License | 5 votes |
export function usePageProps() {
const { meta = {} } = useRoute() || {}
return shallowReadonly(meta.state || {})
}