1.0.1 • Published 1 year ago

ss-tiptap v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

(Sharpstream) Tip-Tap

This is a wrapper project around TipTap.

The editor is contained in a SFC, with styling and some dependencies.

Project setup

npm install --save ss-tiptap

or

yarn add ss-tiptap

Basic Usage

input-id is not required, but is best practice.

<template>
  <tip-tap v-model="feed.description" input-id="feed-description" />
</template>

<script>
import TipTap from "ss-tiptap";

export default {
  components: {
    TipTap,
  },
};
</script>