mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 04:06:48 +00:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
export function useDashboard() {
|
|
const dashboardUrl = computed(() => {
|
|
return location.origin
|
|
})
|
|
|
|
return { dashboardUrl }
|
|
}
|