2023-05-06 17:35:11 +08:00
2022-10-21 16:52:41 +08:00
2023-05-06 17:35:11 +08:00
2022-09-15 16:58:06 +08:00
2022-09-15 16:58:06 +08:00
2022-09-29 15:30:56 +08:00
2022-09-23 11:15:02 +08:00
2022-09-29 14:41:29 +08:00
2022-09-15 16:58:06 +08:00
2022-09-15 16:58:06 +08:00
2022-09-29 11:39:38 +08:00
2022-09-15 16:58:06 +08:00
2022-09-15 16:58:06 +08:00
2022-09-29 11:24:04 +08:00
2022-09-15 16:58:06 +08:00
2022-09-15 16:58:06 +08:00
2022-09-15 16:58:06 +08:00
2022-09-15 16:58:06 +08:00
2022-10-11 11:17:00 +08:00
2022-09-15 16:58:06 +08:00

技术文档 https://eleadmin.com/doc/eleadmin/#/

1.2.安装运行

先安装依赖

npm install

访问国外网站比较慢的用户可以在后面加--registry

npm install --registry=https://registry.npmmirror.com

运行项目

npm run serve

下载产品时可查看自己的产品授权码并复制,然后需要在 src/config/setting.js 中配置,永久授权用户的授权码没有域名和时长的限制:

// EleAdmin 授权码 export const LICENSE_CODE = '这里换成你的授权码'; // 在 main.js 的 Vue.use(EleAdmin, {}) 时引用了此配置

v1.10.0 授权码 dk9mcwJyetRWQlxWRiojIqJWdzJCLi4Wa4QDN5ojI0NWZIVnI6ICZpJCLiwiI3VkUMNVa6Iibvl2cyVmdQfiATMuEjI0NW==

安装nodejs https://nodejs.org/en/

升级npm npm install -g npm

tinymce编辑器参数设置 tinymce.init({ selector: '#tinydemo2', //skin:'oxide-dark', language:'zh_CN', plugins: 'print preview searchreplace autolink directionality visualblocks visualchars fullscreen image link media template code codesample table charmap hr pagebreak nonbreaking anchor insertdatetime advlist lists wordcount imagetools textpattern help emoticons autosave bdmap indent2em autoresize formatpainter axupimgs', toolbar: 'code undo redo restoredraft | cut copy paste pastetext | forecolor backcolor bold italic underline strikethrough link anchor | alignleft aligncenter alignright alignjustify outdent indent |
styleselect formatselect fontselect fontsizeselect | bullist numlist | blockquote subscript superscript removeformat |
table image media charmap emoticons hr pagebreak insertdatetime print preview | fullscreen | bdmap indent2em lineheight formatpainter axupimgs', height: 650, //编辑器高度 min_height: 400, /content_css: [ //可设置编辑区内容展示的css,谨慎使用 '/static/reset.css', '/static/ax.css', '/static/css.css', ],/ fontsize_formats: '12px 14px 16px 18px 24px 36px 48px 56px 72px', font_formats: '微软雅黑=Microsoft YaHei,Helvetica Neue,PingFang SC,sans-serif;苹果苹方=PingFang SC,Microsoft YaHei,sans-serif;宋体=simsun,serif;仿宋体=FangSong,serif;黑体=SimHei,sans-serif;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;', link_list: [ { title: '预置链接1', value: 'http://www.tinymce.com' }, { title: '预置链接2', value: 'http://tinymce.ax-z.cn' } ], image_list: [ { title: '预置图片1', value: 'https://www.tiny.cloud/images/glyph-tinymce@2x.png' }, { title: '预置图片2', value: 'https://www.baidu.com/img/bd_logo1.png' } ], image_class_list: [ { title: 'None', value: '' }, { title: 'Some class', value: 'class-name' } ], importcss_append: true, //自定义文件选择器的回调内容 file_picker_callback: function (callback, value, meta) { if (meta.filetype === 'file') { callback('https://www.baidu.com/img/bd_logo1.png', { text: 'My text' }); } if (meta.filetype === 'image') { callback('https://www.baidu.com/img/bd_logo1.png', { alt: 'My alt text' }); } if (meta.filetype === 'media') { callback('movie.mp4', { source2: 'alt.ogg', poster: 'https://www.baidu.com/img/bd_logo1.png' }); } }, toolbar_sticky: true, autosave_ask_before_unload: false, });

S
Description
No description provided
Readme 4.7 MiB
Languages
Vue 68.4%
CSS 19.8%
JavaScript 11.6%
HTML 0.1%