1.0.0-beta.4 • Published 2 years ago

@gits-id/quill-editor v1.0.0-beta.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Quill Editor Component

VueQuill integrated with vee-validate.

Installation

Install with your prefered Package Manager.

npm

npm i @gits-id/quill-editor

yarn

yarn add @gits-id/quill-editor

pnpm

pnpm i @gits-id/quill-editor

Usage

Basic Usage

<script setup lang="ts">
  import {VQuillEditor} from '@gits-id/quill-editor';
  import '@gits-id/quill-editor/dist/style.css';

  const content = ref('');
</script>

<template>
  <VQuillEditor
    v-model="content"
    name="content"
    label="Content"
    placeholder="Input your content"
  />
  <pre>{{ {content} }}</pre>
</template>

Validation Example

<script setup lang="ts">
  import {VQuillEditor} from '@gits-id/quill-editor';
  import {useForm} from 'vee-validate';
  import {object, string} from 'yup';
  import VBtn from '@gits-id/button';
  import '@gits-id/quill-editor/dist/style.css';

  const schema = object({
    content: string().required().label('Content'),
  });

  const {handleSubmit, resetForm, values} = useForm({
    validationSchema: schema,
  });

  const onSubmit = handleSubmit((values) => {
    alert(JSON.stringify(values));
  });
</script>

<template>
  <form @submit="onSubmit" class="border-none">
    <VQuillEditor
      name="content"
      label="Content"
      placeholder="Input your content"
    />
    <div class="mt-4">
      <v-btn type="submit">Submit</v-btn>
      <v-btn type="button" text @click="resetForm">Reset</v-btn>
    </div>
    <pre>{{ { values } }}</pre>
  </form>
</template>

Documentation

View full documentation here.

License

MIT

1.0.0-beta.3

2 years ago

1.0.0-beta.4

2 years ago

1.0.0-beta.2

2 years ago

1.0.0-beta.1

2 years ago

0.15.0

2 years ago

0.16.0

2 years ago

0.16.1

2 years ago

0.12.0-alpha.1

3 years ago

0.14.0-alpha.48

2 years ago

0.13.20

2 years ago

0.12.0-alpha.9

3 years ago

0.12.0-alpha.4

3 years ago

0.14.0-alpha.60

2 years ago

0.13.6

3 years ago

0.13.9

3 years ago

0.12.0

3 years ago

0.13.0

3 years ago

0.14.0

2 years ago

0.14.2-alpha.40

2 years ago

0.14.0-alpha.1

2 years ago

0.14.0-alpha.0

2 years ago

0.13.5

3 years ago

0.12.0-alpha.24

3 years ago

0.12.0-alpha.23

3 years ago

0.12.0-alpha.20

3 years ago

0.13.11

3 years ago

0.12.0-alpha.21

3 years ago

0.13.16

3 years ago

0.13.15

3 years ago

0.12.0-alpha.0

3 years ago

0.11.9

3 years ago

0.11.10

3 years ago

0.11.0

3 years ago

0.11.5

3 years ago

0.11.6

3 years ago

0.10.13

3 years ago

0.10.13-alpha.6

3 years ago

0.10.13-alpha.5

3 years ago

0.10.12

3 years ago

0.10.11

3 years ago