wesllycode / fast-editor

Rich Text Editor

Home Page:https://fast-editor.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fast Editor

Fast Editor formats your texts quickly and easily, and with a modern interface.

image

How to use?

<template>
  <div class="w-screen h-screen flex items-center justify-center bg-bgSecondary px-4">
    <Editor @getHtml="(val) => html = val" placeholder-f="Adicionar descrição..." />
  </div>
</template>

<script setup>
import Editor from "./components/Editor/index.vue"
import { ref, watchEffect } from "vue";

// use a reactive variable
let html = ref("")
</script>

Get the generated html

// use @getHtml to get the generated html
@getHtml="(val) => html = val"

Props

height="000px" default 100%
width="000px" default 100%
placeholder-f="Your description" default  "Descrição..."
editorBackground="#000" default #121214

License 📜

🛠 Technologies

How to Contribute 🚀

  1. Fork the Repository:

    • Fork this repository by clicking the "Fork" button in the top right corner of this page. This will create a copy of the repository in your GitHub account.
  2. Clone the Repository:

    • Clone the forked repository to your local development environment.
    git clone git@github.com:Luizboaventura1/fast-editor.git
    cd fast-editor

About

Rich Text Editor

https://fast-editor.vercel.app

License:MIT License


Languages

Language:Vue 93.7%Language:JavaScript 3.7%Language:HTML 2.4%Language:CSS 0.3%