![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
移动端滑动切换菜单栏组件,简单易用,一秒实现移动端滑动切换效果,与swiper组件不同的是,该组件主要用来做滑动切换页面,支持动态修改页面,动态撑开高度,兼容ios/Android,良好的页面性能。
npm i scroll-tab-bar --save
import Vue from 'vue'
import App from './App'
import { ScrollTab, ScrollTabCol } from '../src/index'
Vue.component('scrollTab', ScrollTab)
Vue.component('ScrollTabCol', ScrollTabCol)
new Vue({
el: '#app',
render:h => h(App)
})
<template>
<div id="app" ref="li">
# 标签栏
<ul class="label-list">
<li class="label-list-item" :class="{'select-label-list-item': index === 0}" @click="index = 0">1</li>
<li class="label-list-item" :class="{'select-label-list-item': index === 1}" @click="index = 1">2</li>
<li class="label-list-item" :class="{'select-label-list-item': index === 2}" @click="index = 2">3</li>
<li class="label-list-item" :class="{'select-label-list-item': index === 3}" @click="index = 3">4</li>
<li class="label-list-item" :class="{'select-label-list-item': index === 4}" @click="index = 4">5</li>
</ul>
# 外层组件
<scroll-tab :current-select="index" :touch-delay="0.3" @selectChange="handleSelectChange">
# 被切换的页面组件
<scroll-tab-col class="item"><div class="item1">1</div></scroll-tab-col>
<scroll-tab-col class="item"><div class="item2">2</div></scroll-tab-col>
<scroll-tab-col class="item"><div>3</div></scroll-tab-col>
<scroll-tab-col class="item"><div>4</div></scroll-tab-col>
<scroll-tab-col class="item"><div>5</div></scroll-tab-col>
</scroll-tab>
</div>
</template>
<script>
export default {
data () {
return {
index: 0
}
},
methods: {
handleSelectChange (tabIndex) {
this.index = tabIndex
}
},
created () {
}
}
</script>
Prop | Default | Type | Description |
---|---|---|---|
current-select | 0 | number | 控制切换到某个scroll-tab-col页 |
touch-delay | 0.3 | number | 页面切换的延迟时间 |
Prop | Type | Description |
---|---|---|
selectChange | function(index) | 监听滑动切换 |
FAQs
The npm package move-video receives a total of 1 weekly downloads. As such, move-video popularity was classified as not popular.
We found that move-video demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.