• 打造自己的前端组件库(奶妈版,超详细)


    打造自己的前端组件库

    demo是开源的,自己上npm 或者 github 上都能搜到
    @mhfwork/yt-ui

    新建vue项目(sass + js + vue2)

    vue create yt-ui	
    
    • 1

    修改文件目录(如下)

    在这里插入图片描述

    修改: 1.src 更名 examples; 2. src/components移动到项目最外层;3.vue.config.js更改入口文件

    // vue.config.js
    
    • 1
    const {defineConfig} = require('@vue/cli-service')
    module.exports = defineConfig({
        transpileDependencies: true,
        pages: {
            index: {
                entry: 'examples/main.js',
                template: 'public/index.html',
                filename: 'index.html'
            }
        }
    })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    编写ytDemo组件并在app.vue中使用

    在这里插入图片描述

    新建文件目录结构如上图:

     // components/demo/index.js
        
        import ytDemo from "./src/main.vue";
        
        ytDemo.install = (Vue) => {
          Vue.component(ytDemo.name, ytDemo);
        };
        
        export default ytDemo;
    
        // components/src/main.vue
        <!--
         * @Description: main 页面
         * @Author: mhf
         * @Date: 2023/10/21
        -->
        <template>
          <div>
            <div class="a">
              a
              <div class="b">b</div>
            </div>
          </div>
        </template>
        
        <script>
        export default {
          name: "ytDemo",
          components: {},
          props: {},
          computed: {},
          watch: {},
          filters: {},
          data() {
            return {};
          },
          methods: {},
          created() {},
          mounted() {},
          destroyed() {},
        };
        </script>
        
        <style lang="scss" scoped>
        .a {
          width: 200px;
          height: 200px;
          border: 1px solid red;
        
          .b {
            width: 100px;
            height: 100px;
            border: 1px solid green;
          }
        }
        </style>
        
        
    
        // example/main.js
        
        import Vue from 'vue'
        import App from './App.vue'
        
        import ytDemo from "../components/ytDemo";
        Vue.use(ytDemo)
        
        Vue.config.productionTip = false
        
        new Vue({
          render: h => h(App),
        }).$mount('#app')
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72

    根据如上步骤则出现如下效果
    在这里插入图片描述


    打包

    // components/index.js
    
    // 整个包的入口
    // 统一导出
    import ytComp from "./ytComp";
    import ytDemo from "./ytDemo";
    const components = [
        ytComp,
        ytDemo,
    ]
    // 定义install方法
    const install = function (Vue) {
        // 注册所有的组件
        components.forEach(component => {
            Vue.component(component.name, component)
        })
    }
    // 判断是否直接引入文件,如果是,就不用调用Vue.use()
    if (typeof window !== 'undefined' && window.Vue) {
        install(window.Vue)
    }
    // 导出install方法
    export default {
        install,
        ytDemo,
        ytComp
    }
    
    // package.json
    {
      "name": "@mhfwork/yt-ui", // 必须保持唯一(请自行上npm官网查询自己的项目名称)
      "version": "0.0.1",
      "private": false,
      "author": {
        "name": "毛三仙",
        "email": "mhf.mail@qq.com"
      },
      "scripts": {
        "serve": "vue-cli-service serve",
        "build": "vue-cli-service build",
        "lint": "vue-cli-service lint",
        "format": "prettier --write \"components/**/*.js\" \"components/**/*.vue\" \"examples/**/*.vue\" \"examples/**/*.vue\"",
        "lib": "vue-cli-service build --target lib components/index.js"
      },
      "dependencies": {
        "core-js": "^3.8.3",
        "vue": "^2.6.14"
      },
      "devDependencies": {
        "@babel/core": "^7.12.16",
        "@babel/eslint-parser": "^7.12.16",
        "@vue/cli-plugin-babel": "~5.0.0",
        "@vue/cli-plugin-eslint": "~5.0.0",
        "@vue/cli-service": "~5.0.0",
        "eslint": "^7.32.0",
        "eslint-plugin-vue": "^8.0.3",
        "sass": "^1.32.7",
        "sass-loader": "^12.0.0",
        "vue-template-compiler": "^2.6.14"
      },
      "eslintConfig": {
        "root": true,
        "env": {
          "node": true
        },
        "extends": [
          "plugin:vue/essential",
          "eslint:recommended"
        ],
        "parserOptions": {
          "parser": "@babel/eslint-parser"
        },
        "rules": {}
      },
      "browserslist": [
        "> 1%",
        "last 2 versions",
        "not dead"
      ]
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80

    发布流程

    todo: 更新 readeMe.md、package.json版本号   
     1. npm run lib   
     2. npm get registry 
     3. npm login     					// 登陆自己的npm账号,没有请自行注册
     4. npm publish --access public		// 正常的话 npm publish 即可,因本项目中使用@mhfwork/xxx 需注明是public库
    
    • 1
    • 2
    • 3
    • 4
    • 5

    使用发布成功的组件库
    在这里插入图片描述

    新项目中

    npm i @mhfwork/yt-ui
    
    • 1
    main.js中注册	
    
        import ytComp from "@mhfwork/yt-ui/components/ytComp";
        import ytDemo from "@mhfwork/yt-ui/components/ytDemo";
        Vue.use(ytComp)
        Vue.use(ytDemo)	
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    Vue文件中使用

    <template>
      <div class="home">
        <yt-comp page-name="aaahahah"/>
        <yt-demo />
      </div>
    </template>
    
    <script>
    // @ is an alias to /src
    
    export default {
      name: 'HomeView',
      components: {
      }
    }
    </script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
  • 相关阅读:
    接口偶尔超时,竟又是JVM停顿的锅!
    【论文通读】CLIP改进工作综述
    关于 GIN 的路由树
    虚拟存储器
    双指针解题
    Java集合框架【二容器(Collection)[ArrayList]】
    【Playwright+Python】系列教程(五)元素定位
    router4x 路由配置(多种方案)
    Who will wash the dishes Privacy Policy
    云流量回溯主要作用是哪些?
  • 原文地址:https://blog.csdn.net/m0_74149462/article/details/133967765