02_09.Vue組件化

1. 首先將文件夾進(jìn)行分類
組件化
2. 分析
  • 由上面的圖可以看出寻行,我們先將功能進(jìn)行模塊化劃分省撑,將公共部分提取出來趴久,放到一個common的文件夾內(nèi)丸相,然后根據(jù)不同的頁面進(jìn)行創(chuàng)建不同的文件夾,詳細(xì)如上圖所示彼棍。
3. 源代碼展示
  • index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link rel="stylesheet" href="style/main.css">
</head>
<body>
    <div id="app">
        <app-goods></app-goods>
    </div>

    <!-- vue的全局組件, 全局自定義指令, 全局過濾器必須在vue實例之前定義, 否則vue實例無法解決 -->
    <script src="./lib/vue.js"></script>

    <!-- 公共組件 -->
    <script src="./components/common/header.js"></script>
    <script src="./components/common/footer.js"></script>
    <script src="./components/common/list.js"></script>
    <script src="./components/common/search.js"></script>

    <!-- 頁面級別組件 -->
    <script src="./components/goods/goods.js"></script>
    <script src="./components/home/home.js"></script>
    <script src="./components/login/login.js"></script>

    <!-- 導(dǎo)入過濾器 -->
    <script src="./filter/date.js"></script>

    <!-- 導(dǎo)入自定義指令 -->
    <script src="./directive/focus.js"></script>

    <!-- 入口 -->
    <script src="./main.js"></script>
</body>
</html>
  • style/main.css
.wrapper {
    width: 800px;
    margin: 20px auto;
}
.operation {
    margin-bottom: 10px;
    text-align: center;
    line-height: 20px;
    font-size: 18px;
}
.operation input {
    padding: 5px;
    border: 1px solid deepskyblue;
}
.operation button {
    border-radius: 3px;
    background-color: deepskyblue;
}
.search {
    text-align: left;
    line-height: 20px;
    font-size: 18px;
}
.search input {
    padding: 5px;
    border: 1px solid deeppink;
}
#tb{
    width: 800px;
    border-collapse: collapse;
    margin: 20px auto;
}
#tb th{
    background-color: #0094ff;
    color:white;
    font-size: 16px;
    padding: 5px;
    text-align: center;
    border: 1px solid black;
}
#tb td{
    padding: 5px;
    text-align: center;
    border: 1px solid black;
}
  • ./components/common/header.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:27:25 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:27:25 
 */

Vue.component('app-header', {
    template: `
    <header>
        <h1>{{ title }}</h1>
        <p>{{ content }}</p>
    </header>`,
    props: ['title'],
    data: function() {
        return {
            content: '這是頭部文件內(nèi)容'
        };
    }
});
  • ./components/common/footer.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:28:12 
 * @Last Modified by: Robyn
 * @Last Modified time: 2017-11-12 19:28:32
 */

Vue.component('app-footer', {
    template: `
    <footer>
        <p>{{ content }}</p>
        <address>{{ address }}</address>
    </footer>`,
    data: function() {
        return {
            content: '這里是尾部內(nèi)容',
            address: '北京市'
        };
    }
});
  • ./components/common/list.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:29:30 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:29:30 
 */

Vue.component('app-list', {
    template: `
    <table id="tb">
        <tr>
            <th>編號</th>
            <th>名稱</th>
            <th>創(chuàng)建時間</th>
            <th>操作</th>
        </tr>
        <!-- 沒有數(shù)據(jù)才顯示, 有數(shù)據(jù)隱藏 -->
        <tr v-if="list.length == 0">
            <td colspan="4">列表無數(shù)據(jù)</td>
        </tr>
        <!-- 渲染商品列表 -->
        <tr v-for="item in list" >
            <td>{{ item.id }}</td>
            <td>{{ item.name }}</td>
            <td>{{ item.ctime | date }}</td>
            <td>
                <!-- @符號是v-on的簡寫方式 -->
                <a href="#" @click="deleteBtn(item.id)">刪除</a>
            </td>
        </tr>
    </table>`,

    props: ['list'],

    data: function() {
        return {};
    },

    methods: {
        // 子組件里面監(jiān)聽刪除按鈕的點擊事件, 但是不負(fù)責(zé)刪除操作, 
        // 而是當(dāng)收到點擊事件的時候, 告訴父親, 它要殺要刮隨便
        deleteBtn(id) {
            this.$emit('del', id);
        }
    }
});
  • ./components/common/search.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:30:12 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:30:12 
 */


Vue.component('app-search', {
    template: `
    <div class="search">
        <input type="text" placeHolder="請輸入篩選內(nèi)容" v-model="searchKey">
    </div>`,
    data: function() {
        return {
            searchKey: ''
        };
    },
    watch: {
        // 當(dāng)這個值變量時, 我通過自定義事件通知父, 同時把最新的值也給傳過去
        searchKey() {
            this.$emit('change', this.searchKey);
        }
    }
});
  • ./components/goods/goods.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:31:03 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:31:03 
 */

Vue.component('app-goods', {
    template: `
    <article>
        <app-header v-bind:title="'商品管理'"></app-header>
        <app-search v-on:change="search"></app-search>
        <app-list v-bind:list="searchGoodsList" v-on:del="deleteGoods"></app-list>
        <app-footer></app-footer>
    </article>
    `,
    data: function() {
        return {
            goodsList: [
                { id: 1, name: '法拉利', ctime: new Date() },
                { id: 2, name: '瑪莎拉蒂', ctime: new Date() },
                { id: 3, name: '蘭博基尼', ctime: new Date() },
                { id: 4, name: '火箭', ctime: new Date() }
            ],
            searchKeyword: ''
        };
    },
    methods: {
        // 通過id刪除商品
        deleteGoods(delId) {
            this.goodsList = this.goodsList.filter(
                goods => goods.id != delId
            );
        },
        // 接收搜索子組件傳遞過來的新值
        search(keyword) {
            this.searchKeyword = keyword;
        }
    },
    computed: {
        // 搜索后的商品列表
        searchGoodsList() {
            return this.goodsList.filter(
                goods => goods.name === this.searchKeyword || this.searchKeyword == ''
            );
        }
    }
});
  • ./components/home/home.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:31:33 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:31:33 
 */

Vue.component('app-home', {
    template: `
    <article>
        <app-header v-bind:title="'首頁'"></app-header>
        <app-footer></app-footer>
    </article>
    `,
    data: function() {
        return {};
    }
});
  • ./components/login/login.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:32:08 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:32:08 
 */

Vue.component('app-login', {
    // 每個組件的模版, 必須要使用一個根元素包裹起來
    template: `
    <article>
        <app-header v-bind:title="'登陸'"></app-header>
        <app-footer></app-footer>
    </article>
    `,
    data: function() {
        return {};
    }
});
  • ./filter/date.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:32:43 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:32:43 
 */

// 實現(xiàn)一個處理日期的過濾器
Vue.filter('date', function(time) {
    var date = new Date(time);
    return `${ date.getFullYear() }-${ date.getMonth() + 1 }-${ date.getDate() }`;
});
  • ./directive/focus.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:33:19 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:33:19 
 */

// 實現(xiàn)一個全局自動焦點指令
Vue.directive('focus', {
    inserted(node) {
        node.focus();
    }
});
  • ./main.js
/*
 * @Author: Robyn 
 * @Date: 2017-11-12 19:33:49 
 * @Last Modified by:   Robyn 
 * @Last Modified time: 2017-11-12 19:33:49 
 */

new Vue({
    el: '#app',
    data: {}
});
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末灭忠,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子座硕,更是在濱河造成了極大的恐慌弛作,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件华匾,死亡現(xiàn)場離奇詭異映琳,居然都是意外死亡,警方通過查閱死者的電腦和手機蜘拉,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進(jìn)店門萨西,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人旭旭,你說我怎么就攤上這事谎脯。” “怎么了您机?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵穿肄,是天一觀的道長。 經(jīng)常有香客問我际看,道長咸产,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任仲闽,我火速辦了婚禮脑溢,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己屑彻,他們只是感情好验庙,可當(dāng)我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著社牲,像睡著了一般粪薛。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上搏恤,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天违寿,我揣著相機與錄音,去河邊找鬼熟空。 笑死藤巢,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的息罗。 我是一名探鬼主播掂咒,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼迈喉!你這毒婦竟也來了绍刮?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤弊添,失蹤者是張志新(化名)和其女友劉穎录淡,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體油坝,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡嫉戚,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了澈圈。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片彬檀。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖瞬女,靈堂內(nèi)的尸體忽然破棺而出窍帝,到底是詐尸還是另有隱情,我是刑警寧澤诽偷,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布坤学,位于F島的核電站,受9級特大地震影響报慕,放射性物質(zhì)發(fā)生泄漏深浮。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一眠冈、第九天 我趴在偏房一處隱蔽的房頂上張望飞苇。 院中可真熱鬧,春花似錦、人聲如沸布卡。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽忿等。三九已至栖忠,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間贸街,已是汗流浹背娃闲。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留匾浪,地道東北人。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓卷哩,卻偏偏與公主長得像蛋辈,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子将谊,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內(nèi)容