tiptap/docs/src/docPages/getting-started.md
2020-08-13 09:37:51 +02:00

1.5 KiB
Raw Blame History

Getting started

tiptap is framework-agnostic and works with Vue.js and React. It even works with plain JavaScript, if thats your thing. To keep everything as small as possible, we put the code to use tiptap with those frameworks in different packages.

Use tiptap with Vue.js

We assume you already have a Vue.js (or Nuxt.js) project. To use tiptap in that project, you are going to need the tiptap Vue.js adapter. You can install tiptap for Vue.js as a dependency in your project:

# Install Vue.js adapter with npm
npm install @tiptap/vue @tiptap/vue-starter-kit

# Install 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 setup tiptap! 🙌

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.

Doesnt work for you? There are a few common pitfalls here, depending on your setup. If you have trouble getting started, try to read the related links down here.

Congrats! Youve got it! 🎉 Lets start to build your editor in the next step.