nhn / toast-ui.vue-editor

This repository is DEPRECATED! GO TO 👉 https://github.com/nhn/tui.editor/tree/master/apps/vue-editor
MIT License
229 stars 47 forks source link

How can I use color picker on vue-editor? #19

Closed isoming closed 5 years ago

isoming commented 5 years ago

Version

1.1.1

Test Environment

MacOS

Current Behavior

I couldn't find the guide for setting text color. Can I use font color changing on vue-editor? If so, how can I?

sohee-lee7 commented 5 years ago

Color picker is implemented by extension of editor so you need import tui-editor/dist/tui-editor-extColorSyntax and then set exts.

import 'tui-editor/dist/tui-editor-extColorSyntax';
<editor :options="editorOptions" />
editorOptions: {
        exts: [
          'colorSyntax'
        ]
      }
isoming commented 5 years ago

@sohee-lee7 Thanks!!