当前位置: 首页 > news >正文

公司网站设计费计入什么科目可以做动态图表的网站

公司网站设计费计入什么科目,可以做动态图表的网站,中国建筑企业公司排名,国内著名网站建设公司一文带你搞定搭建自己的组件库(rollup.js) 目前Vue和React都是采用rollup.js进行打包,我们在公司开发的时候也可以用rollup搭建一个自己的组件库放到你的项目中,简化项目的结构项目性能。 接下来我将带你使用rollup从0——1搭建一个在vue中使用的组件库 开发前准备 我的开发…一文带你搞定搭建自己的组件库(rollup.js) 目前Vue和React都是采用rollup.js进行打包,我们在公司开发的时候也可以用rollup搭建一个自己的组件库放到你的项目中,简化项目的结构项目性能。 接下来我将带你使用rollup从0——1搭建一个在vue中使用的组件库 开发前准备 我的开发环境是 node -- 16.0.0 npm -- 7.10.0 //我的项目版本是 pinia -- ^2.1.7 vue -- ^3.3.11 //我的项目是基于viet的vue3加Ts可视化项目 //我将使用rollup搭建一个组件库抽取公共的组件到rollup中后期发布到npm仓库中以达到简化项目结构的目的这篇文章详细的记录了我搭建的过程以及解决报错的过程 开始 1.1搭建创建组件库 本节你将实现一个简单的rollup打包文件过程 以及使用打包后的代码 在你的桌面上创建一个文件夹(我的文件夹名字是【Echarts-Screen-Libs】) 拖动你的文件夹到vscode中打开命令行输入npm init 一路回车初始化npm 修改你的package.json //this is my package.json {name: echarts-screen-libs,//changeversion: 1.0.0,description: datav components library,//changemain: index.js,scripts: {test: echo \Error: no test specified\ exit 1},author: Joon,//changelicense: ISC //这是开源协议(后期修改) }继续打开命令行安装rollup 我的版本是rollup: ^4.9.6在项目中创建src文件夹 在src下创建index.js 里面写上一下内容 console.log(你好 组件库!!) export default {}继续在你的项目中创建两个文件夹 rollup.config.prod.js 线上环境调用 rollup.config.dev.js 开发环境调用这里做个说明 我们在线上环境我们会进行压缩代码 而在开发环境不会去压缩代码 所以这里我们创建两个配置文件 在不同环境中我们调用不同的config去执行rollup 继续编写dev配置文件实现调用rollup打包 // rollup.config.dev.js const path require(path) const inputPath path.resolve(__dirname, ./src/index.js) const outputPath path.resolve(__dirname, ./dist/screen.datav.js) module.exports {input: inputPath,output: {file: outputPath,format: umd//最后解释} }继续修改package.json scripts: {// -wcdev: rollup -wc rollup.config.dev.js},通过 npm run dev去调用 rollup实现打包 rollup -wc rollup.config.dev.js是一个rollup命令行工具的参数。 -w或--watch启用监视模式当代码发生变化时自动重新构建。-c或--config指定配置文件的路径。rollup.config.dev.js指定要使用的配置文件的文件名。 因此该命令会使用名为rollup.config.dev.js的配置文件并在其基础上启用监视模式。这意味着如果配置文件或输入文件中的代码发生更改则rollup将自动重新构建打包文件。 当你执行完 npm run dev 应该不会有报错 可以看一下dist文件夹下已经打包出来了文件 到这里你就完成了一个简单的打包 我们在项目中创建一个文件夹 叫example 在该文件夹下创建一个index.html测试一下我们的打包代码 html langenheadmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlescript src../dist/screen.datav.js/script /headbodyh1this is test file/h1/body/html运行该文件我们可以看见该js脚本运行没有问题 这里我们解释一下在dev配置文件中 format: “umd” 是什么意思 ​ format 的选项有什么呢 umd 在上述的rollup.config.dev.js配置文件中format: umd用于指定rollup的输出格式。 UMDUniversal Module Definition是一种通用的模块系统它兼容多个环境包括浏览器、Node.js和AMD异步模块定义。通过将代码包装在UMD的模块定义中可以在不同的环境中使用相同的代码。 将format设置为umd会生成一个UMD模块它可以在浏览器和Node.js环境中都可以使用。UMD模块既可以通过script标签直接引入也可以使用CommonJS或AMD模块加载器进行导入。 此外UMD模块还允许您通过在全局命名空间中暴露一个全局变量来直接访问模块的导出内容。例如如果在配置文件中指定了name选项那么format: umd将在全局命名空间中定义一个具有该名称的变量您可以使用该变量访问模块的导出内容。 总而言之format: umd在Rollup的配置中表示输出格式为UMD模块这意味着您可以在不同的环境中使用该模块。 如果你写了umd 他会以js函数形式导出。 cjs format: cjs表示在Rollup的配置中设置输出格式为CommonJS模块。 CommonJS是一种用于JavaScript模块化的规范主要用于Node.js环境。CommonJS模块化规范允许将代码分割到模块中并通过require函数导入和导出模块。 将format选项设置为cjsRollup将生成符合CommonJS模块规范的输出文件。这意味着您可以在Node.js环境中使用生成的文件通过require语句导入模块获取导出的内容。通常CommonJS模块也可以在支持CommonJS规范的前端构建工具中使用。 总结一下format: cjs指示Rollup生成符合CommonJS模块规范的输出文件使您可以在Node.js环境中使用该文件。如果你写了cjs 他会以module.exports进行导出模块这种形式在浏览器是运行不了的 这也是为什么许多CommonJS需要通过webpack或者rollup打包成umd模式在浏览器使用 es format: es是Rollup配置选项中的一种输出格式意味着输出的代码将符合ES模块规范。 ES模块是一种用于JavaScript模块化的规范它在现代浏览器、Node.js环境以及许多支持JavaScript的应用程序中得到了支持。它使用 import 和 export 关键字来定义和导入/导出模块。 如果在使用format: es进行Rollup构建时将会输出符合ES模块规范的代码这意味着它可以直接在现代浏览器和支持ES模块规范的环境中使用。可以通过import语句导入模块的内容与其他模块进行交互。 需要注意的是ES模块通常不能在Node.js环境中直接使用因为Node.js目前仅支持部分的ES模块规范因此需要使用专门的工具或插件进行转换和处理。 综上所述format: es意味着Rollup将以符合ES模块规范的格式输出代码让它可以在现代浏览器和支持ES模块的环境中直接使用。 如果你写了es 他会以 export default xxx j进行导出 这种形式的代码浏览器也是不太支持 也有解决方法 大家可以百度一下浏览器怎么运行 es模块 总结 我们建议你使用umd模式去打包你的组件库 当然你也可以在output中配置多个输出 可以输出多种形式的模块 比如cjs es等等 1.2配置rollup插件(配置dev) 在1.1中我们完成了一个简单的输出 讲解了一个简单的rollup配置文件如果你想配置rollup实现组件库我们还需要配置一些插件 1.2.1配置bable-node 我们在开发组件库的时候难免会遇到要编写es6 的情况我们先解决这个问题 这里我们执行npm命令去安装sam老师的库 npm i sam-test-data我们尝试用rollup去打包我们写的es语法 我们改写一下index.js console.log(你好 组件库!!) // es6语法 import data from sam-test-data console.log(data.random(), data.a, data.b) export default {}我们尝试去用node 运行一下 C:\Users\Joon\Desktop\Echarts-Screen-Libs\src\index.js:3 import data from sam-test-data ^^^^^^ SyntaxError: Cannot use import statement outside a moduleat Object.compileFunction (node:vm:355:18)at wrapSafe (node:internal/modules/cjs/loader:1038:15)at Module._compile (node:internal/modules/cjs/loader:1072:27)at Object.Module._extensions..js (node:internal/modules/cjs/loader:1137:10)at Module.load (node:internal/modules/cjs/loader:988:32)at Function.Module._load (node:internal/modules/cjs/loader:828:14)at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:76:12) at node:internal/main/run_main_module:17:47可以看见我们不能运行改代码 配置babel/node 安装npm install --save-dev babel/node 安装完成后 你可以尝试运行一下 babel-node ./src/index.js 无疑报错 $ babel-node src/index.js (node:15944) Warning: To load an ES module, set type: module in the package.json or use the .mjs extension. (Use node --trace-warnings ... to show where the warning was created) C:\Users\Joon\Desktop\Echarts-Screen-Libs\src\index.js:3 import data from sam-test-data; ^^^^^^ SyntaxError: Cannot use import statement outside a moduleat Object.compileFunction (node:vm:355:18)at wrapSafe (node:internal/modules/cjs/loader:1038:15)at Module._compile (node:internal/modules/cjs/loader:1072:27)at Module._compile (C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\node\node_modules\pirates\lib\index.js:117:24)at Module._extensions..js (node:internal/modules/cjs/loader:1137:10)at Object.newLoader [as .js] (C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\node\node_modules\pirates\lib\index.js:121:7)at Module.load (node:internal/modules/cjs/loader:988:32)at Function.Module._load (node:internal/modules/cjs/loader:828:14)at Function.runMain (node:internal/modules/run_main:76:12)at Object.anonymous (C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\node\src\_babel-node.ts:222:12) Why 我们还需要安装一个插件叫 babel/core 继续执行 babel-node .\src\index.js 你会发现还是有报错 我们还需要进行配置 babel的用途是将es6转换为es5的语法 我们需要在项目目录下创建 .babelrc文件去配置一下babel 怎么配置会查的小朋友都去官网看 不会查的直接复制我的 {presets: [[babel/preset-env]] }再次运行babel-node .\src\index.js 还是有报错 注意看 Error: Cannot find module ‘babel/preset-env’ $ babel-node src/index.js C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\core\lib\gensync-utils\functional.js:53if (result.ok) return result.value;else throw result.value;Error: Cannot find module babel/preset-env再次安装 npm i -D babel/preset-env 再次运行babel-node .\src\index.js 还是有报错 你好 组件库!! C:\Users\Joon\Desktop\Echarts-Screen-Libs\src\index.js:12 console.log(_samTestData.default.random(), _samTestData.default.a, _samTestData.default.b);^TypeError: Cannot read property random of undefinedat Object.anonymous (C:\Users\Joon\Desktop\Echarts-Screen-Libs\src\/index.js:4:18)at Module._compile (node:internal/modules/cjs/loader:1108:14)at Module._compile (C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\node\node_modules\pirates\lib\index.js:117:24)at Module._extensions..js (node:internal/modules/cjs/loader:1137:10)at Object.newLoader [as .js] (C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\node\node_modules\pirates\lib\index.js:121:7)at Module.load (node:internal/modules/cjs/loader:988:32)at Function.Module._load (node:internal/modules/cjs/loader:828:14)at Function.runMain (node:internal/modules/run_main:76:12)at Object.anonymous (C:\Users\Joon\AppData\Roaming\npm\node_modules\babel\node\src\_babel-node.ts:222:12)我们仔细看 问题不大了 你好 组件库!!以及出来了 这里主要的问题就是 他无法识别 import data from ‘sam-test-data’ 他无法识别data 所以他会报错 我们改一下语法 import * as data from ‘sam-test-data’ 再次运行 $ babel-node src/index.js 你好 组件库!! 0 9 78终于成功了 我们再次测试一下修改一下index.js文件 console.log(你好 组件库!!) // es6语法 // import * as data from sam-test-data import { random, a, b } from sam-test-data console.log(random(), a, b) export default {}再次运行babel-node .\src\index.js 发现可以运行那么我们的es6语法转换为es5语法就解决了 1.2.2配置node-resolve 先说结论我们在没有配置node-resolve插件的时候 我们将我们打包后的screen.datav.es.js或者screen.datav.js这两个文件单独拿出去运行是不能运行的他会提示你他找不到data模块就是我们下载的sam-test-data中暴露的代码 比如说你现在把你打包的代码拷贝到桌面用的命令行去运行一下你会发现他跑不动 JoonDESKTOP-IE2H5KG MINGW64 ~/Desktop $ node screen.datav.js node:internal/modules/cjs/loader:943throw err;^ Error: Cannot find module sam-test-data 为了我们能将打包出来的文件可以单独运行 我们就需要使用到rollup/plugin-node-resolve这个库 安装插件npm i rollup/plugin-node-resolve 在dev.config中配置plugins const path require(path) const inputPath path.resolve(__dirname, ./src/index.js) const outputPathUmd path.resolve(__dirname, ./dist/screen.datav.js) const outputPathejs path.resolve(__dirname, ./dist/screen.datav.es.js) const resolve require(rollup/plugin-node-resolve)//看这里 module.exports {input: inputPath,output: [{file: outputPathUmd,format: umd,name: screenDatav},{file: outputPathejs,format: es,name: screenDatav},],plugins: [resolve()//看这里] }在项目中再次打包并且拷贝我们打包后的文件到桌面尝试运行 $ node screen.datav.js 你好 组件库!! 0 1 89成功单独运行 1.2.3触发tree-shaking tree-shaking(摇树) 把树上的枯树叶摇掉也就是简化我们的打包体积相当于elementui中的按需引入 下面用一个例子讲清楚tree-shaking的概念 在你的项目下的src下创建plugin.js文件 const a 1; const b 2; function sayHello() {console.log(你好啊) } export default {a,b,sayHello }index.js // 演示tree-shaking import { a, b, sayHello } from ./plugin console.log(a) console.log(b) console.log(sayHelloexport default sayHello执行 babel-node src/index.js $ babel-node src/index.js undefined undefined undefined三个undefined why 解析 如果我们在index.js下面通过 import * as data from ./plugin 其实我们引入的a b sayHello 都不是最终的引入 他实际上是放在 {default:{a:1,b:2,sayhello:[function:sayhello]}}中 所以我们调用也需要这样调用 //index.js // 演示tree-shaking import * as data from ./pluginconsole.log(data.default.sayHello)export default data.default.sayHello运行 没问题了 JoonDESKTOP-IE2H5KG MINGW64 ~/Desktop/Echarts-Screen-Libs $ babel-node src/index.js 1 2 [Function: sayHello]现在开始演示tree-shaking 在你的package.json中在配置一个命令 scripts: {dev: rollup -wc rollup.config.dev.js,build: rollup -c rollup.config.dev.js //add},现在你去执行npm run build 你去看看打包后的代码 (function (global, factory) {typeof exports object typeof module ! undefined ? module.exports factory() :typeof define function define.amd ? define(factory) :(global typeof globalThis ! undefined ? globalThis : global || self, global.screenDatav factory()); })(this, (function () { use strict;const a 1;const b 2;function sayHello() {console.log(你好啊);}var plugin {a,b,sayHello};// 演示tree-shakingconsole.log(plugin.sayHello);var index plugin.sayHello;return index;}));我们可以发现a和b我们没有使用但是他还是打包了 这就很难受 我不用你还给我 我们的tree-shaking就是解决这个问题的 为什么会有这个问题因为你用了import * as data from ‘./plugin’ 因为你导入了*导入的是所有的内容所以他会打包 这里插一嘴 在vue2中他就是利用了类似于export default {a, b,sayHello}这种导出方式 他导出的是所有所以就导致了vue2无法实现tree-shking机制而vue3可以 我们怎么去出发tree-shking呢 我们改写一下plugin.js export const a 1; export const b 2; export function sayHello() {console.log(你好啊) }再次改写index.js // 演示tree-shaking import { sayHello, a, b } from ./pluginconsole.log(data.default.sayHello)export default data.default.sayHello再次打包看看你的打包后的代码 (function (global, factory) {typeof exports object typeof module ! undefined ? module.exports factory() :typeof define function define.amd ? define(factory) :(global typeof globalThis ! undefined ? globalThis : global || self, global.screenDatav factory()); })(this, (function () { use strict;function sayHello() {console.log(你好啊);}// 演示tree-shakingconsole.log(sayHello);return sayHello;})); a和b没了 成功触发 1.2.4配置external属性 有些场景下虽然我们使用了resolve插件但我们仍然某些库保持外部引用状态这时我们就需要使用external属性告诉rollup.js哪些是外部的类库 配置他的目的就是不要把vue的代码或者其他的外部库全部打包到我们的库中 const path require(path) const inputPath path.resolve(__dirname, ./src/index.js) const outputPathUmd path.resolve(__dirname, ./dist/screen.datav.js) const outputPathejs path.resolve(__dirname, ./dist/screen.datav.es.js) const resolve require(rollup/plugin-node-resolve) module.exports {input: inputPath,output: [{file: outputPathUmd,format: umd,name: screenDatav},{file: outputPathejs,format: es,name: screenDatav},],plugins: [resolve()],external: [vue] }不多赘述 1.2.5配置commonjs commonjs我们刚刚演示了 他是通过require引入一个模块 通过module.exports导出一个模块rollup.js默认不支持CommonJS模块他默认就是做es6打包的。 演示一下我们为什么需要配置CommonJS模块 在你的项目src下创建c.js //c.js const a 1 module.exports a //index.js import data from ./c console.log(data) export default data通过 babel-node不难发现我们可以运行 我们尝试打包 可以发现报错了 [!] RollupError: default is not exported by src/c.js, imported by src/index.js.我的的commonjs输出的时候是没有default这个属性的要解决这个问题我们需要去配置commonjs插件 npm i -D rollup-plugin-commonjs 修改配置文件 const path require(path) const inputPath path.resolve(__dirname, ./src/index.js) const outputPathUmd path.resolve(__dirname, ./dist/screen.datav.js) const outputPathejs path.resolve(__dirname, ./dist/screen.datav.es.js) const resolve require(rollup/plugin-node-resolve) const commonjs require(rollup-plugin-commonjs)//add module.exports {input: inputPath,output: [{file: outputPathUmd,format: umd,name: screenDatav},{file: outputPathejs,format: es,name: screenDatav},],plugins: [resolve(),commonjs()//add],external: [vue] }再次执行打包就没有问题了 如何触发three-shking呢 //我们在导出的时候我们这样导出就行 //index.js import { a, b } from ./c console.log(a) export default a //c.js exports.a 1 exports.b 1再次打包看看打包结果没问题触发了tree-shiking 总结一下 我们在esmodule中触发tree-shking export const a1; 我们在commonjs中触发tree-shking exports.a 1 引入都是通过结构进行引入 import { a, b } from ‘./c’ 1.2.6配置bable模块 安装npm install rollup/plugin-babel --save-dev 比如我们在index.js中写了es6语法我们需要在打包的时候把es6语法转换为es5 引入插件 调用插件 const path require(path) const inputPath path.resolve(__dirname, ./src/index.js) const outputPathUmd path.resolve(__dirname, ./dist/screen.datav.js) const outputPathejs path.resolve(__dirname, ./dist/screen.datav.es.js) const resolve require(rollup/plugin-node-resolve) const commonjs require(rollup-plugin-commonjs) const babel require(rollup/plugin-babel)//add module.exports {input: inputPath,output: [{file: outputPathUmd,format: umd,name: screenDatav},{file: outputPathejs,format: es,name: screenDatav},],plugins: [resolve(),commonjs(),babel({// 表示那些不需要转换exclude:node_modules/**})//add],external: [vue] }1.2.7配置json模块 为什么要配置演示给你看 首先我们修改index.js import pack from ../package.json var mainEs (base) {return random(base) }; export default mainEs;然后我们执行打包 [!] RollupError: Expected ;, } or eof (Note that you need rollup/plugin-json to import JSON files)因为 json文件不支持模块化构建 1.3配置rollup插件(配置prod) 我们在上线项目的时候我们事实上需要对代码进行压缩这里我们使用rollup/plugin-terser插件进行压缩代码 首先把我们刚刚配置好的env配置文件全部复制到prod文件下 安装rollup/plugin-terser插件 npm install rollup/plugin-terser --save-dev//rollup.config.prod.js const path require(path) const inputPath path.resolve(__dirname, ./src/index.js) const outputPathUmd path.resolve(__dirname, ./dist/screen.datav.js) const outputPathejs path.resolve(__dirname, ./dist/screen.datav.es.js) const resolve require(rollup/plugin-node-resolve) const commonjs require(rollup-plugin-commonjs) const babel require(rollup/plugin-babel); const json require(rollup/plugin-json); import terser from rollup/plugin-terser module.exports {input: inputPath,output: [{file: outputPathUmd,format: umd,name: screenDatav},{file: outputPathejs,format: es,name: screenDatav},],plugins: [resolve(),commonjs(),babel({exclude: node_modules/**,}),json(),terser()],external: [vue] }紧接着我们在package.json中创建命令 scripts: {dev: rollup -wc rollup.config.dev.js,build: rollup -c rollup.config.dev.js,build:prod:rollup -c rollup.config.prod.js//add},执行npm run build:prod 再次看打包后的代码 压缩了没问题 1.4配置解析vue文件 截至目前 你完成了对各种js的解析 解析来我们就要进入最重要的环节了配置解析vue文件 首先你去创建一个test.vue文件 templatediv classWrapperh1wanhgfeng/h1/div /templatescript setup langts/script script export default {name: TestComponent // 添加name属性 } /script style scoped langscss h1 {color: red; } /style//index.js import test from ./Test.vue export default function (vue) {vue.component(test.name, test) }执行打包 [!] RollupError: Expression expected (Note that you need plugins to import files that are not JavaScript)报错了为啥 你没装插件 继续安装以及调用函数 npm i -D rollup-plugin-vue const vue require(“rollup-plugin-vue”) vue() 注意你的vue函数必须放在plugins中的第一位 所有的函数靠后vue先调用 别忘了两个环境dev和prod都要加 继续打包—还是报错 [!] RollupError: Identifier cannot follow number (Note that you need plugins to import files that are not JavaScript) src/Test.vue?vuetypestyleindex0id07bdddeascopedtruelang.scss (2:12) 1: 2: h1 {^ 3: color: red; 4: }因为你的scss没有解析插件 老套路 npm i rollup-plugin-postcss const postcss require(“rollup-plugin-postcss”) postcss() 再次打包—还是报错 [!] (plugin postcss) Error: You need to install one of the following packages: sass, node-sass in order to process SASS fileswhy – 去安装sass或者node -sass npm i -D scss 好的我帮你们踩坑了这里即使你安装了scss还是没用 继续安装就可以打包了(真不容易) npm install -D sass-loader^10 sass到此为止 我们实现了vue的解析 还有一个报错 (!) Missing global variable name 我们在output中添加一个 global 就行 output: [{file: outputPathUmd,format: umd,name: screenDatav,globals: {vue: vue}},{file: outputPathejs,format: es,name: screenDatav,globals: {vue: vue}},],2.1测试组件库 改动你的index.html html langenheadmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlescript srchttps://unpkg.com/vue3.3.11/dist/vue.global.js/script !-- 引入你的vuecdn地址 -- !-- 注意你的vue版本 --script src../dist/screen.datav.js/script !-- 引入你的库 -- /headbodydiv idapp{{message}}test-component/test-component/divscriptVue.createApp({setup() {var message wanfengreturn {message}}}).use(screenDatav).mount(#app)!-- 尤其注意这里 你需要use 模块的名称 其实就是你的配置问文件的name screenDatav --!--这个name其实就会变成一个全局的对象所以你需要挂载他--/script/body/html然后还有一个问题 找到你打包的 screen.datav.js 找到这个一行 (global typeof globalThis ! undefined ? globalThis : global || self, global.screenDatav factory(global.vue));//注意看global.vue 他是小写的 我们使用的是大写的Vue创建的app 所以你需要手动修改一下 global.Vue这里有的同学就觉得不太行老子每次执行一下打包都要改多烦 其实不用担心我们后期使用模块化开发他不会执行到这里 他会判断 exports是否存在 function是否存在 不会走到这里 typeof exports object typeof module ! undefined ? module.exports factory(require(vue)) :typeof define function define.amd ? define([vue], factory) :2.2嵌入vue项目中 做这一步你需要有个vue3项目自己去创建 连接之前我们需要修改package.json中的 “main”: “./dist/screen.datav.js”, 这个main是默认引入指向的文件 我们指向我们打包后的js 上线后我们把他指向.min.js 然后我们在package.json中添加 file属性 改属性是指我们在推到npm仓库会包含那些文件 files: [dist,src],最后执行 npm link 不知道我的笔记本愁什么风 执行后没有输出 我就只能苦苦找link包 我的地址是 C:\Users\Joon\AppData\Roaming\npm\node_modules\echarts-screen-libs最后的echarts-screen-libs是你的package.json中的name名字 按照这个地址你去找指定能找到当然希望你有输出 然后去你的vue3项目中 的package.json手动添加一个依赖后期你发布了组件库就好多了 dependencies: {pinia: ^2.1.7,vue: ^3.3.11,echarts-screen-libs:1.0.0},然后打开你vue3项目的命令行执行 npm link echarts-screen-libs 最后去你的node_modules中查看一下有没有加入 然后在main.ts中添加使用 import { createApp } from vue import ./style.css import App from ./App.vue // 引入pinia并实例化 import { createPinia } from pinia import datav from echarts-screen-libs//add const pinia createPinia() createApp(App).use(datav).use(pinia).mount(#app)//add可能你的项目还是会报错 因为你的lib没有安装eslint我这里没有使用eslint所以我不用报错 你去添加一下就行了 最后我建议你不要用vite 我打包组件的时候 测试了一下环境 webpack ts vue 通过 webpack js vue 通过 vite ts vue 报错 vite js vue 报错 https://juejin.cn/post/6984896065791229989https://github.com/vuejs/vue-cli/issues/7423], 最后执行 npm link不知道我的笔记本愁什么风 执行后没有输出 我就只能苦苦找link包我的地址是 C:\Users\Joon\AppData\Roaming\npm\node_modules\echarts-screen-libs 最后的echarts-screen-libs是你的package.json中的name名字按照这个地址你去找指定能找到当然希望你有输出然后去你的vue3项目中 的package.json手动添加一个依赖后期你发布了组件库就好多了 “dependencies”: { “pinia”: “^2.1.7”, “vue”: “^3.3.11”, “echarts-screen-libs”:“1.0.0” }, 然后打开你vue3项目的命令行执行npm link echarts-screen-libs最后去你的node_modules中查看一下有没有加入[外链图片转存中...(img-XqOPxC83-1707312769836)]然后在main.ts中添加使用ts import { createApp } from vue import ./style.css import App from ./App.vue // 引入pinia并实例化 import { createPinia } from pinia import datav from echarts-screen-libs//add const pinia createPinia() createApp(App).use(datav).use(pinia).mount(#app)//add可能你的项目还是会报错 因为你的lib没有安装eslint我这里没有使用eslint所以我不用报错 你去添加一下就行了 最后我建议你不要用vite 我打包组件的时候 测试了一下环境 webpack ts vue 通过 webpack js vue 通过 vite ts vue 报错 vite js vue 报错 https://juejin.cn/post/6984896065791229989https://github.com/vuejs/vue-cli/issues/7423这里我看了两篇文章还是没解决 各位大佬们自己看看吧
http://www.pierceye.com/news/448295/

相关文章:

  • 做3d打印网站苏州建设工程人才招聘网信息网站
  • 网站建设丂金手指科杰wordpress中logo大小
  • 微餐饮网站建设被老板抓到用公司产品做自己的网站
  • 软件公司网站模板下载定制搭建网站
  • 网站建设实训报告要求怎么做公司门户网站
  • 深圳规划建设局网站wordpress改变访问目录
  • dw怎么做购物网站o2o平台都有哪些
  • 阿里云备案多个网站吗应用商店下载app软件
  • 响应式网站手机端尺寸网站开发培训心得
  • 徐州手机网站开发公司电话江苏五星建设网站
  • 网站建设全包广做短视频素材哪里找
  • 做网站为什么每年都要续费企业官网建站步骤
  • 培训行业门户网站建设方案专业网站运营制作
  • 百度网站两两学一做心得体会江苏专业网站建设费用
  • 做企业网站的架构图网站上的销售怎么做
  • 网站开发思维导图内容淘宝客在百度推广网站么做
  • 国外美容网站crm开发
  • 辽宁建设资质申报网站wordpress提示插件安装
  • 做网站用什么软件语言wordpress绑定域名后乱码
  • 网站建设邀请函郑州网站搭建的公司
  • 网站制作论文优帮云广州网站设计首选柚米
  • 唐山建设厅官方网站我有一个网站怎么做外贸
  • 荣成城市规划建设局网站宁晋网站开发
  • 福州电子商务网站手机触屏版网站开发
  • 佛山网站建设骏域开发公司综合部内部管理章程
  • 网站建设 迅雷下载西安建设工程信息网网上招投标
  • 浅析个人网站的设计论文二本网络工程就业前景
  • 网站没有做301的后果是什么苏州工业园区两学一做教育网站
  • 品牌网站建设定位湖南做网站的公司有哪些
  • mvc做的网站郑州作网站