1 Star 0 Fork 0

1310158721@qq.com / xt-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MyLoader.js 670 Bytes
一键复制 编辑 原始数据 按行查看 历史
// 待优化
const components = [
"xt-button",
"xt-input",
"xt-menu",
"xt-avatar",
"xt-dropdown",
"xt-icon",
// 自动生成文件标识符 !!!
];
module.exports = function (source) {
const hasCom = [];
components.forEach((comp, index) => {
if (source.includes(comp)) {
hasCom.push(comp);
}
});
let extraCode = "";
hasCom.forEach((item, index, array) => {
// extraCode += `@import url("xt-plugin/css/${item}.css");`;
extraCode += `@import url("@/plugin/css/${item}.css");`;
});
const finalCode = `
<style>
@import url("@/plugin/css/base.css");
${extraCode}
</style>
`;
return finalCode + source;
};
1
https://gitee.com/tlh13101587201/xt-plugin.git
git@gitee.com:tlh13101587201/xt-plugin.git
tlh13101587201
xt-plugin
xt-plugin
master

搜索帮助