为了账号安全,请及时绑定邮箱和手机立即绑定

如何制作自定义文本和样式

如何制作自定义文本和样式

慕尼黑8549860 2021-12-23 14:43:39
我是男性网站,用户可以在其中制作网站简介。来自 mywebsite 的用户如何自定义文本和样式,例如加粗、着色等?
查看完整描述

1 回答

?
蝴蝶不菲

TA贡献1810条经验 获得超4个赞

您需要使用好的所见即所得编辑器,例如https://github.com/scrumpy/tiptap


你可以像这样进行基本设置


<template>

  <editor-content :editor="editor" />

</template>


<script>

// Import the editor

import { Editor, EditorContent } from 'tiptap'


export default {

  components: {

    EditorContent,

  },

  data() {

    return {

      editor: null,

    }

  },

  mounted() {

    this.editor = new Editor({

      content: '<p>This is just a boring paragraph</p>',

    })

  },

  beforeDestroy() {

    this.editor.destroy()

  },

}

</script>


查看完整回答
反对 回复 2021-12-23
  • 1 回答
  • 0 关注
  • 127 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信