Select the types of activity you want to include in your feed.
1<template> 2 <div> 3 {{ $route }} 4 </div> 5</template> 6 7<script setup> 8const route = useRoute() 9const myCookie = useCookie('myCookie') 10const value = useSomething() 11const { data: name } = await useFetch('/api/test') 12</script>