1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <div>
- <Editor
- api-key="写你的key"
- :init="init"
- v-model:content="content"
- ref="tinymce"
- />
- </div>
- </template>
- <script setup name="TinymceEditor">
- import Editor from "@tinymce/tinymce-vue";
- const { proxy } = getCurrentInstance();
- const props = defineProps(["value"]);
- const emit = defineEmits(["updateValue"]);
- const content = ref("");
- const tinymce = ref(null);
- const value = ref("");
- const init = reactive({
- plugins: "lists link image table code help wordcount",
- toolbar:
- "myButton | fontselect | fontsizeselect | formatselect | bold italic underline forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | table | image | removeformat",
- content_css: "tinymce-5", //主题tinymce-5-dark || tinymce-5 || default || writer || document || dark
- custom_undo_redo_levels: 50, //回退数量
- end_container_on_empty_block: true, //块级文本是否换行
- keep_styles: true, //回车是否保存原有样式,例如code块回车是否截断
- menubar: false, //是否开启顶部菜单 > false 关闭菜单 | 'edit insert view format table tools help' 菜单按照这里排序 | 参考:https://www.tiny.cloud/docs/tinymce/6/menus-configuration-options/
- toolbar_mode: "wrap", //功能栏是否换行 > | wrap 换行 | scrolling 滚动 | sliding 省略
- toolbar_location: "top", //菜单栏位置 > bottom 底部 | top 顶部
- style_formats_merge: true, //是否开启默认功能
- elementpath: false, //是否展示编辑层级 > p span
- resize: true, //调整宽高 > true 调整高 | false 不可调整宽高 | both 宽高可调
- language: "zh_CN", //中文
- images_upload_url: "/demo/upimg.php",
- images_upload_base_path: "/demo",
- // 自定义快捷将
- text_patterns: [
- { start: "---", replacement: "<hr/>" },
- { start: "--", replacement: "—" },
- { start: "-", replacement: "—" },
- { start: "(c)", replacement: "©" },
- { start: "//brb", replacement: "Be Right Back" },
- {
- start: "//h",
- replacement:
- '<h1 style="color: blue">Heading here</h1> <h2>Author: Name here</h2> <p><em>Date: 01/01/2000</em></p> <hr />',
- },
- ],
- images_upload_handler: function (blobInfo, succFun, failFun) {
- var xhr, formData;
- var file = blobInfo.blob(); //转化为易于理解的file对象
- xhr = new XMLHttpRequest();
- xhr.withCredentials = false;
- xhr.open("POST", "/demo/upimg.php");
- xhr.onload = function () {
- var json;
- if (xhr.status != 200) {
- failFun("HTTP Error: " + xhr.status);
- return;
- }
- json = JSON.parse(xhr.responseText);
- if (!json || typeof json.location != "string") {
- failFun("Invalid JSON: " + xhr.responseText);
- return;
- }
- succFun(json.location);
- };
- formData = new FormData();
- formData.append("file", file, file.name); //此处与源文档不一样
- xhr.send(formData);
- },
- // 自定义指令
- text_patterns_lookup: (ctx) => {
- const parentTag = ctx.block.nodeName.toLowerCase();
- if (parentTag === "pre" || parentTag === "p") {
- return [{ start: "`", end: "`", format: "code" }];
- } else if (parentTag === "p") {
- return [{ start: "*", end: "*", format: "bold" }];
- } else if (parentTag === "span") {
- return [
- // ctx.text is the string from the start of the block to the cursor
- { start: "brb", replacement: ctx.text + ": Be Right Back" },
- ];
- } else {
- return [];
- }
- },
- });
- onMounted(() => {
- content.value = props.value;
- });
- </script>
- <style lang="scss" scoped>
- </style>
|