This commit is contained in:
baileijun 2024-06-29 20:14:44 +08:00
parent b4b57f0424
commit 0732434efc
2 changed files with 8 additions and 5 deletions

View File

@ -6,7 +6,7 @@
"dev": "vue-cli-service serve", "dev": "vue-cli-service serve",
"build": "vue-cli-service build", "build": "vue-cli-service build",
"lint": "vue-cli-service lint", "lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib packages/index.js" "lib": "vue-cli-service build --target lib --dest lib packages/index.js"
}, },
"main": "./lib/myErpElement.umd.min.js", "main": "./lib/myErpElement.umd.min.js",
"dependencies": { "dependencies": {

View File

@ -1,10 +1,10 @@
// 导入button组件 // 导入button组件
import mButton from './Button/src/index.vue' import mButton from './Button/index'
import mButton1 from './Button1/src/index.vue' import mButton1 from './Button1/index'
// 组件列表 // 组件列表
const components = [ const components = [
mButton,mButton1 mButton, mButton1
] ]
// 定义 install 方法,接收 Vue 作为参数(使用 use 注册插件,那么所有的组件都会被注册) // 定义 install 方法,接收 Vue 作为参数(使用 use 注册插件,那么所有的组件都会被注册)
@ -23,6 +23,9 @@ if (typeof window !== 'undefined' && window.Vue) {
export default { export default {
// 导出的对象必须具有 install才能被 Vue.use() 方法安装 // 导出的对象必须具有 install才能被 Vue.use() 方法安装
install, install,
}
export {
install,
// 以下是具体的组件列表 // 以下是具体的组件列表
mButton, mButton,
mButton1, mButton1,