执行过npm install命令的vue-element-admin源码
康凯
2022-05-20 aa4c235a8ca67ea8b731f90c951a465e92c0a865
1
{"remainingRequest":"D:\\源码\\vue-element-admin-master\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\源码\\vue-element-admin-master\\src\\views\\components-demo\\tinymce.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\源码\\vue-element-admin-master\\src\\views\\components-demo\\tinymce.vue","mtime":1649647926000},{"path":"D:\\源码\\vue-element-admin-master\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\源码\\vue-element-admin-master\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\源码\\vue-element-admin-master\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\源码\\vue-element-admin-master\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:Ly8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KCmltcG9ydCBUaW55bWNlIGZyb20gJ0AvY29tcG9uZW50cy9UaW55bWNlJwoKZXhwb3J0IGRlZmF1bHQgewogIG5hbWU6ICdUaW55bWNlRGVtbycsCiAgY29tcG9uZW50czogeyBUaW55bWNlIH0sCiAgZGF0YSgpIHsKICAgIHJldHVybiB7CiAgICAgIGNvbnRlbnQ6CiAgICAgIGA8aDEgc3R5bGU9InRleHQtYWxpZ246IGNlbnRlcjsiPldlbGNvbWUgdG8gdGhlIFRpbnlNQ0UgZGVtbyE8L2gxPjxwIHN0eWxlPSJ0ZXh0LWFsaWduOiBjZW50ZXI7IGZvbnQtc2l6ZTogMTVweDsiPjxpbWcgdGl0bGU9IlRpbnlNQ0UgTG9nbyIgc3JjPSIvL3d3dy50aW55bWNlLmNvbS9pbWFnZXMvZ2x5cGgtdGlueW1jZUAyeC5wbmciIGFsdD0iVGlueU1DRSBMb2dvIiB3aWR0aD0iMTEwIiBoZWlnaHQ9Ijk3IiAvPjx1bD4KICAgICAgICA8bGk+T3VyIDxhIGhyZWY9Ii8vd3d3LnRpbnltY2UuY29tL2RvY3MvIj5kb2N1bWVudGF0aW9uPC9hPiBpcyBhIGdyZWF0IHJlc291cmNlIGZvciBsZWFybmluZyBob3cgdG8gY29uZmlndXJlIFRpbnlNQ0UuPC9saT48bGk+SGF2ZSBhIHNwZWNpZmljIHF1ZXN0aW9uPyBWaXNpdCB0aGUgPGEgaHJlZj0iaHR0cHM6Ly9jb21tdW5pdHkudGlueW1jZS5jb20vZm9ydW0vIj5Db21tdW5pdHkgRm9ydW08L2E+LjwvbGk+PGxpPldlIGFsc28gb2ZmZXIgZW50ZXJwcmlzZSBncmFkZSBzdXBwb3J0IGFzIHBhcnQgb2YgPGEgaHJlZj0iaHR0cHM6Ly90aW55bWNlLmNvbS9wcmljaW5nIj5UaW55TUNFIHByZW1pdW0gc3Vic2NyaXB0aW9uczwvYT4uPC9saT4KICAgICAgPC91bD5gCiAgICB9CiAgfQp9Cg=="},{"version":3,"sources":["tinymce.vue"],"names":[],"mappings":";;;;;;;;;;;;;;AAcA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"tinymce.vue","sourceRoot":"src/views/components-demo","sourcesContent":["<template>\n  <div class=\"components-container\">\n    <aside>\n      Rich text is a core feature of the management backend, but at the same time it is a place with lots of pits. In the process of selecting rich texts, I also took a lot of detours. The common rich texts on the market have been basically used, and I finally chose Tinymce. See the more detailed rich text comparison and introduction.\n      <a target=\"_blank\" class=\"link-type\" href=\"https://panjiachen.github.io/vue-element-admin-site/feature/component/rich-editor.html\">Documentation</a>\n    </aside>\n    <div>\n      <tinymce v-model=\"content\" :height=\"300\" />\n    </div>\n    <div class=\"editor-content\" v-html=\"content\" />\n  </div>\n</template>\n\n<script>\nimport Tinymce from '@/components/Tinymce'\n\nexport default {\n  name: 'TinymceDemo',\n  components: { Tinymce },\n  data() {\n    return {\n      content:\n      `<h1 style=\"text-align: center;\">Welcome to the TinyMCE demo!</h1><p style=\"text-align: center; font-size: 15px;\"><img title=\"TinyMCE Logo\" src=\"//www.tinymce.com/images/glyph-tinymce@2x.png\" alt=\"TinyMCE Logo\" width=\"110\" height=\"97\" /><ul>\n        <li>Our <a href=\"//www.tinymce.com/docs/\">documentation</a> is a great resource for learning how to configure TinyMCE.</li><li>Have a specific question? Visit the <a href=\"https://community.tinymce.com/forum/\">Community Forum</a>.</li><li>We also offer enterprise grade support as part of <a href=\"https://tinymce.com/pricing\">TinyMCE premium subscriptions</a>.</li>\n      </ul>`\n    }\n  }\n}\n</script>\n\n<style scoped>\n.editor-content{\n  margin-top: 20px;\n}\n</style>\n\n"]}]}