当前位置: 首页 > 工具软件 > Vditor > 使用案例 >

vditor配置cdn实现离线使用

鲜于宜修
2023-12-01

最开始没有离线使用,出现了vditor服务出问题影响平台的使用,因出现次数较多,最后综合考虑采取了离线使用,使用的版本是3.8.14

1.把cdn相关文件给运维

2.配置

拿到运维给的地址进行配置

2.1页面

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`
	  }
	},
}

2.2store->index.js中按如下方法写

const state = {
  vditorCdn: 'https://vditor.sec-in.com/',
  userInfo: null, // 用户信息
  login: getLoginState() // 是否登录
}

export default new Vuex.Store({
  state,
  actions,
  mutations
})
 类似资料: