Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhangxiang958/vue-tab
a touch swipe tab component for vue.js(vue2).
https://github.com/zhangxiang958/vue-tab
es6 swipe vue-tab vue2 vuejs
Last synced: about 1 month ago
JSON representation
a touch swipe tab component for vue.js(vue2).
- Host: GitHub
- URL: https://github.com/zhangxiang958/vue-tab
- Owner: zhangxiang958
- License: mit
- Created: 2017-07-21T11:04:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-27T04:08:53.000Z (over 4 years ago)
- Last Synced: 2024-04-24T20:03:21.989Z (7 months ago)
- Topics: es6, swipe, vue-tab, vue2, vuejs
- Language: JavaScript
- Homepage: https://github.com/vuejs/awesome-vue#tabs
- Size: 521 KB
- Stars: 51
- Watchers: 3
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-tab - swipe tab simplify
---> This component is already used in production env.
## Overviewvue-tab is a touch swipe tab for vue.js.
## Install
```
npm install --save [email protected]
```### Import using module
use this code in app.js(entry js):
```
import Tab from 'vue-swipe-tab';
Vue.use(Tab);
```
## Usage```
export default {
methods: {
changePage(idx) {
console.log(idx);
}
}
}
```
# Options
Here list Props on swipe component
| Option | Description |
| ----- | ----- |
| label | Required, the text of tab header |
| hash | Required, the hash of tab page |
| indexTab | set the index tab by tab's hash |
| color | set the color of tab header cursor |
| fontSize | String, the fontSize of tab Header, is caculated by rem |
| tabheight | String, the tabHeight of tabHeader, is caculated by rem |
| changePage | Event, it will be fired after the page change, you can get the currentPage index in the callback function |## Live Demo
https://zhangxiang958.github.io/vue-tab/demo/index.html
## License
MIT License
Copyright (c) 2017 Shawn Cheung
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.---
#### Contact
- Mail [[email protected]](mailto [email protected])
- Blog [zhangxiang958.github.io](http://zhangxiang958.github.io "shawn")