marketingPortal/pages/dashboard/index.vue

10 lines
188 B
Vue

<script lang="ts" setup>
const tags = usePortalTags();
onBeforeMount(() =>
navigateTo(
toValue(tags).interest ? "/dashboard/interest-analytics" : "/dashboard/site"
)
);
</script>