Using gsap with Nuxt 3

dasdas asd

dasdas

const http = require('http')const bodyParser = require('body-parser')http.createServer((req, res) => {  bodyParser.parse(req, (error, body) => {    res.end(body)  })}).listen(3000)
const http = require('http')const bodyParser = require('body-parser')http.createServer((req, res) => {  bodyParser.parse(req, (error, body) => {    res.end(body)  })}).listen(3000)
<template>  <!-- you will need to handle a loading state -->  <div v-if="pending">    Loading ...  </div>  <div v-else>    <div v-for="post in posts">      <!-- do something -->    </div>  </div></template><script setup>const { pending, data: posts } = useLazyFetch('/api/posts')watch(posts, (newPosts) => {  // Because posts starts out null, you will not have access  // to its contents immediately, but you can watch it.})</script>