Join 2,200+ companies using Produktly to create exceptional micro surveys that gather quick user feedback to validate your product decisions on Nuxt.
Guided walkthroughs for Nuxt applications. Produktly supports Nuxt page transitions and universal rendering.
Gather contextual feedback that helps you understand your users and improve your product features.
Triggered Surveys
Real-Time Insights
Increased Retention
Getting started with Produktly micro surveys on your Nuxt project is quick and easy.
Find your script in the Produktly dashboard.
Add the script to your nuxt.config.js or a global layout.
Use our visual editor to build tours on your Nuxt app.
Publish and track user engagement with ease.
Nuxt does universal rendering: the page renders on the server, then Vue hydrates it on the client. Anything that touches the DOM has to wait for hydration, which means scripts that run too early can race ahead of the components they’re trying to target.
Nuxt 3 uses Vue Router under the hood for client-side navigation, so once the user has loaded the first page, subsequent route changes don’t trigger full reloads. Tours that span routes need to be aware of router transitions.
Use the head config in nuxt.config.ts to inject the snippet on every page.
// nuxt.config.ts
export default defineNuxtConfig({
app: {
head: {
script: [
{
innerHTML: `
(function (w, d, f) {
var a = d.getElementsByTagName("head")[0];
var s = d.createElement("script");
s.async = 1; s.src = f;
s.setAttribute("id", "produktlyScript");
s.dataset.clientToken = "YOUR_TOKEN";
a.appendChild(s);
})(window, document, "https://public.produktly.com/js/main.js");
`,
type: 'text/javascript'
}
]
}
}
});For Nuxt 2, the same shape works under head() in nuxt.config.js. The snippet is async, so it does not block hydration.
Hydration warnings if the snippet manipulates DOM early
Avoid creating DOM elements before hydration completes. Loading async is the simplest path; the IIFE pattern above defers until the script downloads.
Page transitions are not full reloads
Enable Produktly’s SPA redirect handling so tours that move between Nuxt routes continue across navigations.
Server-only pages skip client-side hooks
If you’ve disabled hydration on a specific page, Produktly will not initialize there. Keep the snippet at the global app level so it loads everywhere your users actually interact.
Nuxt teams pick Produktly because the snippet sits in nuxt.config and stays out of the way during framework upgrades. SPA-aware redirect handling fits cleanly with Vue Router, and the editor works on hydrated pages the same way it does on plain client-rendered apps.
Product Tours
Product Tours software for Nuxt.
Announcements
Announcements software for Nuxt.
Checklists
Checklists software for Nuxt.
Feedback Widgets
Feedback Widgets software for Nuxt.
Smart Tips
Smart Tips software for Nuxt.
Tool Tips
Tool Tips software for Nuxt.
Roadmaps
Roadmaps software for Nuxt.
NPS Widgets
NPS Widgets software for Nuxt.
Changelogs
Changelogs software for Nuxt.
React
Best micro surveys software for your React app.
Next.js
Best micro surveys software for your Next.js app.
Vue.js
Best micro surveys software for your Vue.js app.
Angular
Best micro surveys software for your Angular app.
Svelte
Best micro surveys software for your Svelte app.
Astro
Best micro surveys software for your Astro app.
Remix
Best micro surveys software for your Remix app.
Gatsby
Best micro surveys software for your Gatsby app.