1.1.3 • Published 2 years ago

simpleusetinymce v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Notice

EN CN

This template help you eary to use the newest tinymce (6).

1. upload the image and auto send to server

2. paste the image and auto send to server

API

paramscontenttypedefault
disableddisabled the editorbooleanfalse
heighteditor heightnumber300
langthe value is same as Language file name,if you want to use other lang, please download the file and put it in to the right way by tinymcestring""
uploadUrlupload image urlstring""
headersupload image url api headersarray<{key:string,val:any}>[]
showUploadBtnshow the custom input file btnbooleantrue
uploadBtnTextcustom upload btn valuestring'Upload'
customUploadBtncustom upload buttonslot
urlPrefixif your image url is not a full url,You can complete the address through itstring""
jsonKeyApi response like {code:0,data:'xxxx'}, it use the data keywordstring'data'
urlFuncCustom function processing the upload url,it is complete after use urlPrefixfunction
otherInitConfigCustom tinymce config cover this configobject{}

* Other config you can see the tinymce API

Event

NameDescriptionType
uploadDoneupload completefunction(editorRef)

DefineExpose

NameDescriptionType
uploadsame as tinymce images_upload_handlerfunction(blobInfo,progress,isBlob: boolean= true)
editorRefthe editor refRef

DEMO

public dir input tinymce resource

resource

main.ts
import { createApp } from "vue";
import App from "./App.vue";

import TEditor from "simpleusetinymce";

createApp(App).use(TEditor).mount("#app");
App.vue
<!-- basic -->
<t-editor v-model="val" />
*.vue
<!-- i18n -->
let langArr = ["zh-Hans", "hy", "th_TH"];
let lang = ref(langArr[0]);
let val = ref("");

/**
 * You can change the lang in time,it is useful by i18n
 * this template just include Chinese、English、Thai
 */
const changeLang = () => {
  // Random switching language
  lang.value = langArr[Math.floor(Math.random() * 3)];
}

<t-editor v-model="val" :lang="lang" :key="lang" />
<!-- Custom upload function by yourself -->
const editor = ref();

/**
 * use upload function by yourself and set content to the editor
 */
const customElementUpload = (e: any) => {
  const file = e.target.files[0];

  editor.value?.upload(file, () => { }, false).then((res: any) => {
    editor.value.editorRef.setContent(`<img src="${res.location}"/>`)
  });
}

<t-editor v-model="val" :lang="lang" :key="lang">
    <template #customUploadBtn>
      <input type="file" @change="customElementUpload">
    </template> 
</t-editor>
<!-- custom tinymce config -->
// cover the config that it was used
const otherInitConfig = {
  // tinymce config
}
<t-editor v-model="val" />

// cover all the config and init tinymce
const tinymceConfig = {
  // tinymce config
}
<t-editor v-model="val" :init="tinymceConfig"/>
1.1.1

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.0

2 years ago

1.0.21

2 years ago

1.0.20

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago