Join 2,200+ companies using Produktly to create exceptional feedback widgets that collect valuable insights to improve your customer experience on Nuxt.
Guided walkthroughs for Nuxt applications. Produktly supports Nuxt page transitions and universal rendering.
Capture customer feedback instantly with simple but effective feedback widgets. Improve your product by listening to your users.
Instant Feedback
Contextual Information
Integration Hub
Getting started with Produktly feedback widgets 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.
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.
Micro Surveys
Micro Surveys software for Nuxt.
Changelogs
Changelogs software for Nuxt.
React
Best feedback widgets software for your React app.
Next.js
Best feedback widgets software for your Next.js app.
Vue.js
Best feedback widgets software for your Vue.js app.
Angular
Best feedback widgets software for your Angular app.
Svelte
Best feedback widgets software for your Svelte app.
Astro
Best feedback widgets software for your Astro app.
Remix
Best feedback widgets software for your Remix app.
Gatsby
Best feedback widgets software for your Gatsby app.