npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@quill-next/vue

v1.0.0

Published

A simple and flexible Vue component wrapper for the Quill Next.

Readme

Quill Next Vue

A simple and flexible Vue component wrapper for the Quill Next.

I plan to release a new version every 2 weeks with new features and improvements, so stay tuned!

Requirements

This package requires Vue 3.4+ and Quill Next as peer dependencies. It is designed to work with the latest versions of both libraries.

Installation

npm install @quill-next/vue
# or
yarn add @quill-next/vue
#or
pnpm add @quill-next/vue

You can install the package using npm or yarn:

npm install @quill-next/vue
# or
yarn add @quill-next/vue
#or
pnpm add @quill-next/vue

Note: This package assumes that quill-next and vue (3.4+) are already installed. It also requires Quill as a peer dependency. You might need to install it separately if you haven't already:

npm install quill-next
# or
yarn add quill-next
#or
pnpm add quill-next

Notice

It is only the first version of the package, so it may not be fully functional and may contain bugs and instabilities. If you encounter any issues, please open an issue on the GitHub repository.

It also suports only a subset of Quill Next features, so some advanced features may not work as expected or may not be implemented yet.

But since I personally use it in my projects, I will try to fix bugs and add new features as soon as possible.

As of version 1.0.0, it is only a wrapper and nothing more. Vue-specific optimizations and features will be added in future versions.

Usage

Import the QuillEditor component and use it in your Vue application.

<template>
	<quill-editor
		v-model="editorContent"
		@text-change="onTextChange"
		@ready="onReady"
		:config="editorConfig"
	/>
</template>

<script>
import { ref } from 'vue'
import { Delta } from 'quill-next'
import QuillEditor from 'quill-next-vue'

export default {
	components: {
		QuillEditor,
	},
	setup() {
		const editorContent = ref(new Delta().insert('Hello World!'))
		const editorConfig = {
			theme: 'snow',
			modules: {
				toolbar: [
					[{ header: [1, 2, false] }],
					['bold', 'italic', 'underline'],
					['image', 'code-block'],
				],
			},
		}

		const onTextChange = () => {
			// Handle text change
		}

		const onReady = () => {
			// Handle editor ready
		}

		return {
			editorContent,
			editorConfig,
			onTextChange,
			onReady,
		}
	},
}
</script>

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.