# vue-sideslip

> 侧滑列表组件

Latest version **1.0.3** (published 2017-08-16) · 0 weekly downloads

## Install

```sh
npm install vue-sideslip
pnpm add vue-sideslip
yarn add vue-sideslip
bun add vue-sideslip
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2017-08-16 |
| First published | 2017-08-16 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 4.0.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Async-Lee |
| Maintainers | async-lee |

## Links

- npm: https://www.npmjs.com/package/vue-sideslip
- npm.io page: https://npm.io/package/vue-sideslip

## Dependencies (1)

- [vue](https://npm.io/package/vue.md) ^2.3.3

## Recent versions

- 1.0.3 (latest) — 2017-08-16
- 1.0.2 — 2017-08-16
- 1.0.1 — 2017-08-16
- 1.0.0 — 2017-08-16

## README

# project
侧滑列表，适用于购物车列表等场景

## 哈哈哈哈哈哈..嗝 就是这么牛逼

``` bash
npm install --save vue-sideslip

<button @click="slipHandle">展开/关闭</button> //开关控制
<vue-sideslip :slipControll="slipControll">
  <div slot="left">定义左边盒子内容</div>
  <div slot="right">定义右边盒子内容</div>
</vue-sideslip>

import vueSideslip from 'vue-sideslip'

export default {
  data(){
    return {
      slipControll:true,
    }
  },
  components: { vueSideslip },
  methods:{
    slipHandle(){
      this.slipControll = !this.slipControll
    }
  }
}

```

For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).

---
_Source: https://npm.io/package/vue-sideslip · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
