'use client' import { IntegrationGuide } from '@/components/IntegrationGuide' import { CodeBlock } from '@/components/CodeBlock' import { getIntegration } from '@/lib/integrations' import { notFound } from 'next/navigation' export default function VueIntegrationPage() { const integration = getIntegration('vue') if (!integration) return notFound() return (

Integrating Pulse with Vue.js is straightforward. Add the script to your index.html file.


index.html (Vue CLI & Vite)

Add the script tag to the <head> section of your index.html file. This works for both Vue 2 and Vue 3 projects created with Vue CLI or Vite.

{` My Vue App
`}

Looking for Nuxt.js? Check the dedicated Nuxt integration guide.

) }