[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-demo. nuxt-demo-xi.vercel.app
0

Configure Feed

Select the types of activity you want to include in your feed.

nuxt-demo / app.vue
227 B 12 lines
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>