Fast Editor formats your texts quickly and easily, and with a modern interface.
<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>
// use @getHtml to get the generated html
@getHtml="(val) => html = val"
height="000px" default 100%
width="000px" default 100%
placeholder-f="Your description" default "Descrição..."
editorBackground="#000" default #121214
Fork the Repository:
Clone the Repository:
```bash git clone git@github.com:Luizboaventura1/fast-editor.git cd fast-editor