博客推行版本更新,成果積累制度,已經寫過的博客還會再次更新,不斷地琢磨,高質量高數量都是要追求的,工匠精神是學習必不可少的精神。因此,大家有何建議歡迎在評論區踴躍發言,你們的支持是我最大的動力,你們敢投,我就敢肝 ...
隨著技術的發展,開發的複雜度也越來越高,傳統開發方式將一個系統做成了整塊應用,經常出現的情況就是一個小小的改動或者一個小功能的增加可能會引起整體邏輯的修改,造成牽一發而動全身。
通過組件化開發,可以有效實現單獨開發,單獨維護,而且他們之間可以隨意的進行組合。大大提升開發效率低,降低維護成本。
今天給大家介紹的一款組件前端Vue自定義可自由滾動新聞欄tabs選項卡標簽欄標題欄組件;附源碼下載地址 : https://ext.dcloud.net.cn/plugin?id=13615
效果圖如下:
cc-newsTabs
使用方法
<!-- tabArr:tab數組 tabChange:標簽欄切換 -->
<cc-newsTabs :tabArr="tabArr" @tabChange="tabChange"></cc-newsTabs>
//初始化數據
tabArr: [{
name: '關註',
id: '1',
},
{
name: '推薦',
id: '2'
},
{
name: '體育',
id: '3'
},
{
name: '熱點',
id: '4'
},
{
name: '財經',
id: '5'
},
{
name: '娛樂',
id: '6'
},
{
name: '軍事',
id: '7'
},
{
name: '歷史',
id: '8'
},
{
name: '本地',
id: '9'
}],
// tab標簽欄改變事件
tabChange(currentIndex) {
uni.showModal({
title: "當前選擇序列",
content: "當前選擇序列 = " + currentIndex
})
}
HTML代碼實現部分
<template>
<view class="content">
<!-- tabArr:tab數組 tabChange:標簽欄切換 -->
<cc-newsTabs :tabArr="tabArr" @tabChange="tabChange"></cc-newsTabs>
</view>
</template>
<script>
export default {
data() {
return {
tabArr: [{
name: '關註',
id: '1',
}, {
name: '推薦',
id: '2'
}, {
name: '體育',
id: '3'
}, {
name: '熱點',
id: '4'
}, {
name: '財經',
id: '5'
}, {
name: '娛樂',
id: '6'
}, {
name: '軍事',
id: '7'
}, {
name: '歷史',
id: '8'
}, {
name: '本地',
id: '9'
}],
}
},
methods: {
tabChange(currentIndex) {
uni.showModal({
title: "當前選擇序列",
content: "當前選擇序列 = " + currentIndex
})
}
}
}
</script>
<style>
page,
.content {
background-color: #f8f8f8;
height: 100%;
overflow: hidden;
}
</style>