1.5 KiB
Getting started
tiptap is framework-agnostic and works with Vue.js and React. It even works with plain JavaScript, if that’s your thing. To keep everything as small as possible, we put the code to use tiptap with those frameworks in different packages.
Table of Contents
1. Install the dependencies
We assume you already have a Vue.js (or Nuxt.js) project. To connect tiptap with Vue.js you are going to need an adapter. You can install tiptap for Vue.js as a dependency in your project:
# Install the Vue.js adapter with npm
npm install @tiptap/vue @tiptap/vue-starter-kit
# Or: Install the Vue.js adapter with Yarn
yarn add @tiptap/vue @tiptap/vue-starter-kit
The @tiptap/vue-starter-kit includes a few basics you would probably need anyway. Cool, you have got everything in place to set up tiptap! 🙌
2. Create a new component
Create a new Vue component (you can call it <Tiptap />) and add the following content. This is the fastest way to get tiptap up and running with Vue.js. It will give you a very basic version of tiptap, without any buttons. No worries, you will be able to add more functionality soon.
::: warning Nuxt.js
If you use Nuxt.js, note that tiptap needs to run in the client, not on the server. It’s required to wrap the editor in a <client-only> tag.
:::
Congrats! You’ve got it! 🎉 Let’s start to configure your editor in the next step.