port-nimara-client-portal/pages/dashboard/index.vue

10 lines
188 B
Vue
Raw Normal View History

2025-02-16 13:10:19 +01:00
<script lang="ts" setup>
2025-03-14 01:10:03 +01:00
const tags = usePortalTags();
onBeforeMount(() =>
navigateTo(
toValue(tags).interest ? "/dashboard/interest-analytics" : "/dashboard/site"
)
);
2025-02-16 13:10:19 +01:00
</script>