UNPKG

balm-ui

Version:

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

15 lines (10 loc) 297 B
import { useEditor } from '../core/quill'; function useSelectAll() { const { toolbarHandlers } = useEditor(); toolbarHandlers.selectall = () => { const { quill } = useEditor(); let text = quill.getText(); quill.setSelection(0, text.length); }; } export default useSelectAll;