1.0.0-beta.4 • Published 1 year ago

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

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year 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

1 year ago

1.0.0-beta.4

1 year ago

1.0.0-beta.2

1 year ago

1.0.0-beta.1

1 year ago

0.15.0

1 year ago

0.16.0

1 year ago

0.16.1

1 year ago

0.12.0-alpha.1

2 years ago

0.14.0-alpha.48

1 year ago

0.13.20

1 year ago

0.12.0-alpha.9

2 years ago

0.12.0-alpha.4

2 years ago

0.14.0-alpha.60

1 year ago

0.13.6

1 year ago

0.13.9

1 year ago

0.12.0

1 year ago

0.13.0

1 year ago

0.14.0

1 year ago

0.14.2-alpha.40

1 year ago

0.14.0-alpha.1

1 year ago

0.14.0-alpha.0

1 year ago

0.13.5

1 year ago

0.12.0-alpha.24

1 year ago

0.12.0-alpha.23

1 year ago

0.12.0-alpha.20

1 year ago

0.13.11

1 year ago

0.12.0-alpha.21

1 year ago

0.13.16

1 year ago

0.13.15

1 year ago

0.12.0-alpha.0

2 years ago

0.11.9

2 years ago

0.11.10

2 years ago

0.11.0

2 years ago

0.11.5

2 years ago

0.11.6

2 years ago

0.10.13

2 years ago

0.10.13-alpha.6

2 years ago

0.10.13-alpha.5

2 years ago

0.10.12

2 years ago

0.10.11

2 years ago