简介 目录 评价 推荐
  • 景树 2024-09-02

    模块化演进过程

    0赞 · 0采集
  • N_Code 2023-11-14

    视频教程是2021年开始的,现在是2023年vue脚手架提供的安装的就只有Vue3,没有Vue2选。

    0赞 · 0采集
  • 日行一善_普渡众生 2023-10-13

    vue - 构建用户界面的渐进式框架

    vue组件 - 组件 可复用的 vue实例

    vue组件库 - element Ant D

    0赞 · 0采集
  • weixin_慕雪6063050 2023-04-06

    配置文件webpack.config.js是webpack模块化打包时候使用的。

    0赞 · 0采集
  • 酒饱饱 2023-03-16
    私人笔记,对外不可见
    0赞 · 0采集
  • yy9239760 2023-02-21

    设计组件。。。。。。。


    0赞 · 0采集
  • yy9239760 2023-02-21

    vue过程。。。。


    0赞 · 0采集
  • qq_加油君_1 2023-02-17

    mkdir docs && echo '# Hello VuePress' > docs/README.md

    控制台输入命令时,显示错误 标记“&&”不是此版本中的有效语句分隔符。

    cmd 运行命令可解决

    0赞 · 0采集
  • aelven2 2022-11-07

    ant design 阿里库

    0赞 · 0采集
  • UFO2015 2022-09-01

    什么鬼,山寨版的呀

    官方正版

    http://sass-lang.com/

    0赞 · 0采集
  • UFO2015 2022-08-30

    过时了 `gulp`

    0赞 · 0采集
  • Inthur 2022-07-18

    创建github站点


    登录github

    将本地文件推送到github

    git init
    git remote add origin    //绑定仓库地址 
    git add .
    git commit -m "feat: save"
    git push -u origin master


    vuepress/config.js中设置base

    在项目根目录中新建deploy.sh

    http://img4.mukewang.com/62d51d740001bbd005910564.jpg


    package.json

    "scripts": {
        "deploy": "bash deploy.sh"
    }


    vuepress设置标题和导航栏

    http://img3.mukewang.com/62d521990001c8d909860508.jpg

    0赞 · 0采集
  • Inthur 2022-07-18

    //编写文档

    //首页文档

    http://img3.mukewang.com/62d50f3000010ba606290640.jpg

    //组件文档

    http://img2.mukewang.com/62d50de800019a8306150582.jpg

    0赞 · 0采集
  • Inthur 2022-07-18

    //vuepress配置文件

    https://img3.mukewang.com/62d3f3bd0001eb6801610140.jpg


    //侧边栏



    在 Markdown 中 使用 Vue

    http://img2.mukewang.com/62d5081c00015d5a07100463.jpg


    //静态文件

    .vuepress/public


    http://img2.mukewang.com/62d50a800001382307470278.jpg

    0赞 · 0采集
  • Inthur 2022-07-17

    http://img1.mukewang.com/62d3cedf00018f4705780522.jpg

    将 VuePress 安装为本地依赖

    npm install -D vuepress

    //创建文档

    mkdir docs && echo '# Hello VuePress' > docs/README.md

    //在 package.json 中添加一些 scripts

    {
      "scripts": {
        "docs:dev": "vuepress dev docs",
        "docs:build": "vuepress build docs"
      }}

    //启动

    npm run docs:dev
    0赞 · 0采集
  • Inthur 2022-07-17

    //在npm上发布第三方组件库

    //配置package.json

    "description":"组件库描述",
    "main":"dist/index.umd.js", //组件库入口文件
    "keywords":{  //关键词,方便用户搜索
        "mooc-ui",
        "vue",
        "ui"
    },
    "author":"Inthur", //作者
    "files": [ //需要发布的文件
        "dist",
        "components"
    ],


    //README.md对组件库描述

    https://img4.mukewang.com/62d3c98c0001fe1108280629.jpg


    //终端登录npm 发布

    npm login
    
    npm publish
    0赞 · 0采集
  • Inthur 2022-07-17

    //安装gulp

    npm i gulp gulp-sass gulp-minify-css -D


    //新建gulpfile.js

    const gulp = require('gulp');
    const sass = require('gulp-sass');
    const minifyCSS = require('gulp-minify-css');
    
    gulp.task('sass', async funtion(){
        return gulp,src('components/css/**/*.scss')
        .pipe(sass()); //将sass转成css
        .pipe(minifyCSS()); //压缩
        .pipe(gulp.dest('dist/css')); //输出到打包目录
    })


    //新建index.scss样式汇总

    @import "./demo.scss";
    @import "./card.scss";


    //在package.json中配置

    "scripts":{
        "build:css":"npx gulp sass"
        "build": "npm run build:js && npm run build:css"
    }
    0赞 · 0采集
  • Inthur 2022-07-17

    //安装 vue-loader

    //webpack配置文件,新建webpack.component.js(自定义命名)

    const { VueLoaderPlugin } = require('vue-loader');
    const path = require('path');//绝对路径
    const glob = require('glob');//遍历
    const list = {};
    
    async function makeList(dirPath,list){
        const files = glob.sync('${dirPath}/**/index.js'); //dirPath下所有index.js路径的数组
        for(let file of files){
            const component = file.split(/[/.]/)[2]; //获取组件name
            list[component] = './${file}'; //填充list
        }
    }
    makeList('components/lib',list);
    
    //files = ['components/lib/card/index.js','components/lib/demo/index.js']
    //list = {
    //    card:'components/lib/card/index.js',
    //    demo:'components/lib/demo/index.js',
    // }
    
    
    module.exports = {
        entry: list, //入口
        mode: 'development',
        output: {
            filename: '[name].umd.js', //输出文件名
            path: path.resolve(__dirname, 'dist'),  //输出目录
            library:'mui', //配置到该字段下
            libraryTarget: 'umd' //打包成umd模块
        },
        plugins: [ //处理Vue文件
            new VueLoaderPlugin(), 
        ],
        module: {
            rules: [
                test:/\.vue$/, //对vue文件使用vue-loader
                use: [
                    {
                        loader: 'vue-loader',
                    }
                ]
            ]
        }
    }


    //package.json配置打包命令

    "scripts": {
        "build:js": "webpack --config ./webpack.component.js"
    }


    //配置组件库入口index.js

    //引入组件库中定义的所有组件
    import Demo from './demo';
    import Card from './card';
    
    const components = {
        Demo,
        Card,
    };
    
    const install = function (Vue) {
        if(install.installed) return; //避免重复安装
        Object.keys(components).forEach(key => {
            Vue.component(components[key].name, components[key]); //对所有key值用component注册
        });
    }
    
    const API = {
        install,
    }
    
    export default API; //导出


    //打包

    npm run build:js
    1赞 · 0采集
  • Inthur 2022-07-16

    //模块化演进过程

    http://img.mukewang.com/62d27a8f0001cb5911770543.jpg

    http://img2.mukewang.com/62d27ad20001fea911630593.jpg


    http://img2.mukewang.com/62d27b610001207510880620.jpg

    四、文件模块化

    http://img1.mukewang.com/62d27be60001de0f05960367.jpg

    //CommonJS适用于服务端


    http://img1.mukewang.com/62d27c3700011fac10640387.jpg

    //AMD适用于浏览器


    http://img2.mukewang.com/62d27c770001b5d804840340.jpg


    http://img4.mukewang.com/62d27d080001a9dd10870500.jpg

    0赞 · 0采集
  • Inthur 2022-07-16

    //组件调用

    <m-card 
        imgSrc="img.png"
        summary="卡片概要"
    />
    <m-card     
        imgSrc="img.png"    
        summary="卡片概要">    
        <template v-slot:footer>        
            <div  class="footer">            
                <div class="level">528人报名</div>            
                <div class="price">¥299.00</div>        
            </div>    
        </template>
    </m-card>
    <m-card     
        imgSrc="img.png" 
        :width="370"
        :imgHeight="90"   
     >    
         插槽类型卡片概要
        <template v-slot:footer>        
            <div  class="footer-spring">            
                <div class="level">528人报名</div>            
                <div class="level">1096收藏</div>          
            </div>    
        </template>
    </m-card>


    <style>
    .footer{
        padding: 0 8px;
        font-size: 12px;
        text-align: left;
    }
    .level{
        color:#9199a1;
        margin-bottom: 8px;
    }
    .price{
        color:#f01414;
    }
    .footer-spring{
        display: flex;
        justify-content: space-between;
        padding: 0 8px;
        font-size: 12px;
    }
    </style>
    1赞 · 1采集
  • Inthur 2022-07-16
    <template>
        <div class="m-card" :style="width ? {width:width + 'px'} : {}">
            <div class="m-card-img" :style="imgHeight ? {imgHeight:imgHeight + 'px'} : {}">
                <img :src="imgSrc" alt="img" />
            </div>
            <div v-if="summary" class="m-card-summary">
                {{summary}}
            </div>
            <div v-else class="m-card-summary">
                <slot></slot>
            </div>
            //用户自定义卡片footer
            <slot name="footer"></slot>
        </div>
    </template>
    
    <script>
    export default {
        name: 'm-card',
        props: {
            width: { //卡片宽度
                type: Number,
                default: 0,
            },
            imgSrc: { //卡片图片资源地址
                type: String,
                default: '',
            },
            imgHeight: { //卡片图片高度
                type: Number,
                default: 0,
            },
            summary: { //卡片概要
                type: String,
                default: '',
            },
        }
    }
    </script>
    .m-card{
        width:270px;
        border-radius:8px;
        background:#fff;
        overflow:hidden;
        box-shadow:0 6px 10px 0 rgba(95,101,105,0.15);
        padding-bottom:8px;
        &-img{
            height:152px;
            img{
                width:100%;
                height:100%;
            }
        }
        &-summary{
            padding:8px;
            text-align:left;
            font-size:14px;
        }
    }
    1赞 · 1采集
  • Inthur 2022-07-16

    //组件通用

    http://img.mukewang.com/62d2652e0001c03211620447.jpg

    0赞 · 1采集
  • Inthur 2022-07-15

    //main.js项目入口

    //文件结构

    http://img.mukewang.com/62d12ecf0001f18a01180196.jpg


    //vue配置 新建 vue.config.js

    module.exports = {
        pages: { //配置
            index: { //主页入口
                entry: 'examples/main.js', //入口文件
                template: 'public/index.html', //模板
                filename: 'index.html' // 文件名
            }
        }
    }


    //组件导出

    http://img.mukewang.com/62d12f54000170a205000250.jpg


    //安装sass

    npm i sass-loader@5 -D

    npm i node-sass -D


    //main.js 引入样式和组件

    http://img.mukewang.com/62d12fa20001f94f06890352.jpg

    http://img2.mukewang.com/62d12fc00001571306040106.jpg

    0赞 · 0采集
  • Inthur 2022-07-15

    // 安装脚手架

    npm install -g @vue/cli

    vue --version


    //创建项目

    vue create project-name


    //启动项目

    npm run serve

    0赞 · 0采集
  • 慕粉2104075742 2022-07-07

    修改vue.config.js

    此文件的详细介绍:https://www.jianshu.com/p/b358a91bdf2d

    0赞 · 0采集
  • 慕粉2104075742 2022-07-06

    使用vue-cli生成的项目是面向业务的,需要修改结构以适应组件库的要求。

     

    安装vue-cli


    创建一个项目


    0赞 · 0采集
  • _山的那边 2022-02-17

    发布

    0赞 · 0采集
  • _山的那边 2022-02-17

    REDAME文件的编写

    0赞 · 0采集
  • _山的那边 2022-02-17

    description:描述

    main:入口文件

    keywords:npm搜索这个包的关键字

    files:所要发布的文件,由于后期会查看源码因此将component文件也发布上去

    0赞 · 0采集
  • _山的那边 2022-02-17

    1. 在css文件夹下设置一个inde文件,将各个sass文件引入,这样打包出一个css文件

    2. 在package命令中重新设置命令,使js打包和css打包一起执行


    0赞 · 0采集
数据加载中...
开始学习 免费