利用requirejs實現vue的模塊化開發

一般vue都是搭配webpack+vue-cli使用的css

若是不在nodejs環境下開發web應用呢?html

這裏提出一個解決方案:vue

一、加載requirejs,而且指定main函數node

<script data-main="js/main" src="https://cdn.bootcss.com/require.js/2.3.5/require.min.js"></script>

二、定義main函數webpack

require.config({
    paths: {
        "text": 'https://cdn.bootcss.com/require-text/2.0.12/text.min',
        'vueLoader': 'componentLoader',
        'article': '../components/article',
        'color': '../components/dialog/color',
        'util': './common/util',
        'app': './workspace/vueSet',
    },
    waitSeconds: 3
});


require(['vueLoader', 'componentConfig', 'app'], (CptLoader, commCpt, app) => {
    CptLoader.config(commCpt,()=>{
        setTimeout(()=>{
            app.$mount(app.$el);
        })
    })
});

能夠注意到,這提供了一個CptLoaderweb

三、組件loader源碼以下所示:vue-cli

/**
 * 組件加載器
 */

//緩存Vue對象
var pool = {};


define([], () => {
    //根據path獲取名稱
    function cal(path) {
        let r = path.split('/');
        return r[r.length - 1];
    }

    return {
        /**
         * 加載全局配置單
         * @param configs
         */
        config(configs, res){
            return new Promise(() => {
                configs.forEach((path, index) => {
                    require(['text!../components/' + path + '.html', '../components/' + path], (html, js) => {
                        let v = {
                            template: html,
                            mixins: [
                                js
                            ]
                        };
                        pool[path] = v;
                        let name = cal(path);
                        Vue.component('v-' + name, pool[path]);
                        if (res && index == configs.length - 1)
                            res();
                    });
                });
            });
        },
        /**
         * 加載指定path的組件,返回Promise
         * @param path
         * @returns {function(*)}
         */
        load(path){
            return res => {
                let t;
                if (t = pool[path])
                    res(t);
                else
                    require(['text!../components/' + path + '.html', '../components/' + path], (html, js) => {
                        let v = {
                            template: html,
                            mixins: [
                                js
                            ]
                        };
                        pool[path] = v;
                        res(v);
                    });
            }
        }
    };
});
View Code

它提供了兩個函數:數組

a、config,用於加載一個數組做爲配置單,該數組內的字符串都會被看成vue全局組件加載緩存

b、load,加載單個vue組件app

須要注意的是,它默認組件會所有存放在./components下

 

四、編寫組件html和js

html便是標準的template寫法,再也不贅述

js示例以下所示:

 

define(['app','vueLoader'], (app,loader) => {
    return {
        props: ['module', 'toggleIcon', 'thisModule', 'moduleList', 'addModuleListIndex', 'moduleCategoryList', 'iconName'],
        data(){
            return {
                showElement: false,
                type: 'tplList',
                moduleConfig: [
                    {
                        name: '文字',
                        type: 'wordage',
                        flag: 0,
                    },
                    {
                        name: '圖片',
                        type: 'groupArea',
                        flag: 0,
                    },
                    {
                        name: '地圖',
                        type: 'map',
                        flag: 1,
                    },
                    {
                        name: '地圖2',
                        type: 'map',
                        flag: 1,
                    }
                ],
            }
        },
        created(){
            console.log('module-list create');
        },
        mounted(){
            console.log('module-list mounted');
        },
        methods: {
            //添加模板切換功能加顯示對應的模塊列表
            showModuleList: function (index, moduleName) {
                app.showModuleList(index, moduleName);
            },
            toggleIcon(){
                this.iconName = this.iconName == this.type ? "" : this.type;
                //加載內容的代碼轉移到此處
            }
        },
        components:{
            'palette-item':loader.load('palette-item'),
            test:{
                template:'<div>123</div>'
            }
        }
    }
});
相關文章
相關標籤/搜索