skip to Main Content

Elementor – Nuxt3 – How to create a single page portfolio site where posts open in a div popup (no page reload), but each project has a unique url?

I am making a portfolio website with nuxt3, tailwindcss and the Wordpress REST API. The general layout of the portfolio website is as follows: <body> <div id="page-wrapper"> <section id="landing-image" class="w-screen h-screen">...</section> <section id="about">...</section> <section id="projects-grid">...</section> </div> </body> Goal: I want…

VIEW QUESTION

Getting images from a Json on NuxtJs

So, to simplify my problem, i want to make a personal blog site with nuxtjs, i want to get the postPreview.js to show on the main screen. postPreview.js export default [ { "id": "0", "title": "DEV LOG #0", "image": "/download.jpeg",…

VIEW QUESTION

Javascript – UI elements jitter when being conditionally rendered

I'm have an issue where buttons and links jitter on state change (when clicking on the "Sign Out" button). I tried both v-if and v-show and the jitter persists. Video of the issue: https://www.veed.io/view/89672f51-f55c-411c-883f-440b02cfa4de?panel=share Reproduction: https://stackblitz.com/edit/nuxt-starter-a8hntf?file=app%2Fcomposables%2FuseStoreAuth.ts. <div> <div> <button @click="setColorTheme()">…

VIEW QUESTION
Back To Top
Search