UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

12 lines (8 loc) 211 B
import { useEditor } from '../core/quill'; function usePreview() { const { toolbarHandlers } = useEditor(); toolbarHandlers.preview = () => { console.log('preview'); }; } export default usePreview;