av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Vue中component標(biāo)簽解決項(xiàng)目組件化操作

瀏覽:103日期:2022-11-28 15:03:55

一、 ??錄婦?/b>

在vue項(xiàng)目組件化的過程中,遇到了一些問題,什么問題呢?就是在做一個(gè)多功能,多可用,多兼容的大組件的時(shí)候,發(fā)現(xiàn)在這個(gè)組件內(nèi)部,實(shí)現(xiàn)了太多的if、for邏輯,包括大量的html元素,雖然說每段功能塊都有批注,但是體積還是比較龐大,最近有些需求,需要將頁(yè)面上的一大塊篩選功能剝離開,形成單獨(dú)的組件,統(tǒng)一數(shù)據(jù)渲染,統(tǒng)一組件管理,且這些功能無論是樣式,或者是從結(jié)構(gòu)來說,差異性都很大,所以考慮了以下幾種開發(fā)方式:

1. 大容量單組件開發(fā),渲染和傳入的數(shù)據(jù)使用各種type、ctype判斷

2. 使用插槽開發(fā),根據(jù)type調(diào)用對(duì)應(yīng)的組件

3. 使用component加載組件的方式,動(dòng)態(tài)渲染調(diào)用組件

最終選擇:第三種方式,采用<component>標(biāo)簽動(dòng)態(tài)引入的方式開發(fā)

二、 官方文檔解釋

1. https://cn.vuejs.org/v2/guide/components.html#動(dòng)態(tài)組件

2. https://cn.vuejs.org/v2/guide/components-dynamic-async.html

3. https://jsfiddle.net/chrisvfritz/o3nycadu/

三、 開發(fā)步驟

1. 首先按照大組件模式開發(fā),功能拆分,統(tǒng)一在大組件中實(shí)現(xiàn)所有功能模塊的樣式 ( 注意:需要在在局部樣式覆蓋全局樣式的條件需要在樣式中使用 /deep/ 、 >>> )

<template> <div class='filter-input-container'> <!-- 選項(xiàng)卡 --> <div class='filter-line'> //... </div> <!-- 時(shí)間選擇 --> <div class='filter-line'> //... </div> <!-- 信息列別下拉框 --> <div class='filter-line'> //... </div> <!-- 搜索表單框 --> <div class='filter-line'> //... </div> </div></template> <script scoped> import { DatePicker, Select, Option, Button, Input } from ’element-ui’; export default { components:{ ’el-date-picker’: DatePicker, ’el-select’: Select, ’el-option’: Option, ’el-button’: Button, ’el-input’: Input } } </script> <style scoped lang='stylus'> @import ’./stylus/filter-input.styl’</style>

2. 單個(gè)功能組件剝離成單獨(dú)的組件文件

(1)搜索:fi-search.vue

(2)下拉: fi-select.vue

(3)標(biāo)簽:fi-tab.vue

(4)時(shí)間:fi-time.vue

然后在每個(gè)單獨(dú)的組件內(nèi)設(shè)置默認(rèn)的props值,通過這個(gè)值來動(dòng)態(tài)渲染組件和綁定數(shù)據(jù),根據(jù)組件類別綁定click或者change事件

3. 選擇一個(gè)下拉功能文件源碼示例分析

<template> <div class='filter-line'> <section class='filter-line-title'>{{title}}</section> <section class='filter-line-content'><span class='flc-span-wrap'><!-- 下拉框選項(xiàng)卡 --><el-select v-model='contents.value' placeholder='請(qǐng)選擇' :class='’selectBox’'> <el-option v-for = 'v,i in contents.options' :key = 'i' :label = 'v.label' :value = 'v.value'> </el-option></el-select> </span> </section> </div></template> <script scoped> import { Select, Option } from ’element-ui’; export default { name: ’fi-select’, data(){ return {selectValue: ’’ } }, props:{ title:{type: String,default: ’信息類別’ }, contents:{type: Object,default:() => ({ options: [ { label: ’show option 1’, value: 1 }, { label: ’show option 2’, value: 2 }, { label: ’show option 3’, value: 3 }, { label: ’show option 4’, value: 4 } ], value: ’’}) } }, methods:{ }, components:{ ’el-select’: Select, ’el-option’: Option } }</script>

4. 調(diào)用下拉框示例

<component v-bind:is='FiSelect' :title='’任務(wù)類別’'></component>

四、 數(shù)據(jù)渲染和管理的邏輯

我們將通過數(shù)據(jù)渲染及綁定所有組件內(nèi)容,所以數(shù)據(jù)的結(jié)構(gòu)如下:

export const listFilters = [{ title: ’工作狀態(tài)’, type: ’tab’, emit: ’’, contents: [ {name:’all’,text: ’全部’}, {name:’not-issued’, text: ’未完成’}, {name: ’is-issued’,text:’已完成’}, {name: ’is-ended’,text: ’已結(jié)束’} ]},{ title: ’工作時(shí)間’, type: ’time’, emit: ’’, contents: [ { type:’tab’,name:’all’,text: ’全部’ }, { type:’tab’,name:’today’, text: ’今天’ }, { type:’tab’,name: ’week’,text:’一周內(nèi)’ }, { type:’tab’,name: ’week’,text:’這個(gè)月’ }, { type:’custom’,name:’custom’,sv:’’,ev:’’ } ]},{ title: ’來源類別’, type: ’select’, emit: ’’, contents: { options: [ { label: ’類型 1’, value: 1 }, { label: ’類型 2’, value: 2 }, { label: ’類型 3’, value: 3 }, { label: ’類型 4’, value: 4 } ], value: ’’ }},{ title: ’網(wǎng)站名稱’, type: ’select’, emit: ’’, contents: { options: [ { label: ’騰訊網(wǎng)’, value: 1 }, { label: ’新浪網(wǎng)’, value: 2 }, { label: ’網(wǎng)易網(wǎng)’, value: 3 }, { label: ’鳳凰網(wǎng)’, value: 4 }, { label: ’搜狐網(wǎng)’, value: 5 } ], value: ’’ }},{ title: ’工作搜索’, type: ’search’, contents: { inputValue: ’’ }}];

五、組件遍歷調(diào)用渲染

<template> <div class='filter-input-container'> <!-- 最終可以動(dòng)態(tài)調(diào)用所有組件 --> <component v-bind:is='’fi-’+v.type' :title='v.title' :contents='v.contents' v-for='v,i in listFilters' :key='i'></component> </div></template> <script scoped> import {listFilters} from ’./scripts/filters.data.js’; export default { data(){ return {components:[’fi-tab’,’fi-time’,’fi-select’,’fi-search’,’fi-input’],listFilters: listFilters } }, props:{ }, methods:{ }, components:{ ’fi-search’: () => import(’../components/fi-search.vue’), //搜索表單 ’fi-tab’: () => import(’../components/fi-tab.vue’), // tab切換 ’fi-time’: () => import(’../components/fi-time.vue’), // 時(shí)間選擇 ’fi-select’: () => import(’../components/fi-select.vue’) // 選擇下拉框 } } </script> <style scoped lang='stylus'> @import ’./stylus/filter-input.styl’</style>

六、 最終案例預(yù)覽效果

Vue中component標(biāo)簽解決項(xiàng)目組件化操作

補(bǔ)充知識(shí):vue中component組件使用——模塊化開發(fā)和全局組件

1、模塊化開發(fā)組件:

box1.vue文件如下:

<template> <div class='hello'> <h1>測(cè)試</h1> </div></template> <script>export default { }</script>

box2.vue文件如下:import引入box1.vue,components設(shè)置,然后設(shè)置成標(biāo)簽使用<box1><template>

<div> <box1></box1> </div></template> <script>import box1 from ’@/components/box1’export default { components: {’box1’: box1},}</script>

2、全局組建

<div id='example'> <my-component></my-component></div>// 注冊(cè)Vue.component(’my-component’, { template: ’<div>A custom component!</div>’})// 創(chuàng)建根實(shí)例new Vue({ el: ’#example’})

渲染為:

<div id='example'> <div>A custom component!</div></div>

以上這篇Vue中component標(biāo)簽解決項(xiàng)目組件化操作就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 欧美成人一区二区三区 | 狠狠操网站 | 精品99久久 | 久久久久久免费毛片精品 | 国产成人综合久久 | 大陆一级毛片免费视频观看 | 国产成人精品999在线观看 | 午夜免费在线观看 | 男女羞羞视频在线看 | 国产探花 | 成年人在线视频 | 91新视频| 欧美成人不卡 | 亚洲一区二区三区四区五区中文 | 国产一区免费 | 欧美日韩在线一区 | 农村真人裸体丰满少妇毛片 | 欧美亚洲一区二区三区 | 天堂一区 | 欧美日韩亚洲在线 | 国产在线精品区 | 国产精品一区二区欧美 | 老妇激情毛片免费 | 国产www在线 | a在线视频 | 91精品国产综合久久精品 | 国产精品一区二区欧美黑人喷潮水 | 久草视频在 | 三级黄视频在线观看 | 天天草天天干天天 | 一级片在线观看 | 成人免费福利 | 亚洲精品日韩综合观看成人91 | 国产精品久久久久久久久久久免费看 | 一级做a爰片性色毛片16美国 | 午夜视频在线播放 | 国产亚洲成av人在线观看导航 | 色播久久 | 人人cao| 精品日韩一区二区 | 久久综合九色综合欧美狠狠 |