mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-14 02:09:01 +08:00
15 lines
453 B
Vue
15 lines
453 B
Vue
|
<template>
|
|||
|
<div class="hero">
|
|||
|
<div class="hero__inner">
|
|||
|
<h1>
|
|||
|
tiptap – a renderless rich-text editor toolkit for Vue.js
|
|||
|
</h1>
|
|||
|
<p>
|
|||
|
This editor is based on <a href="https://prosemirror.net">Prosemirror</a>, <em>fully extendable</em> and renderless. There is a plugin system that lets you render each node as <strong>a vue component</strong>.
|
|||
|
</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<style lang="scss" src="./style.scss" scoped></style>
|