最开始没有离线使用,出现了vditor服务出问题影响平台的使用,因出现次数较多,最后综合考虑采取了离线使用,使用的版本是3.8.14
拿到运维给的地址进行配置
vditorFun() {
let self = this;
this.contentEditor = new Vditor("markdownContent", {
cdn: this.$store.state.vditorCdn,
preview: {
theme: {
path: `${this.$store.state.vditorCdn}/dist/css/content-theme`
}
},
}
const state = {
vditorCdn: 'https://vditor.sec-in.com/',
userInfo: null, // 用户信息
login: getLoginState() // 是否登录
}
export default new Vuex.Store({
state,
actions,
mutations
})