# @yvany/height-transition

> vue height transition component

Latest version **0.1.0** (published 2019-12-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install @yvany/height-transition
pnpm add @yvany/height-transition
yarn add @yvany/height-transition
bun add @yvany/height-transition
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2019-12-15 |
| First published | 2019-12-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Yvna Yang |
| Maintainers | yvany |

## Links

- npm: https://www.npmjs.com/package/@yvany/height-transition
- Repository: https://github.com/YvanY/height-transition
- Homepage: https://github.com/YvanY/height-transition#readme
- Issues: https://github.com/YvanY/height-transition/issues
- npm.io page: https://npm.io/package/@yvany/height-transition

## Recent versions

- 0.1.0 (latest) — 2019-12-15

## README

# height-transition

```html
<template>
  <main>
    <button @click="toggle">toggle</button>

    <height-transition>
      <div v-if="show">
        <!-- contents -->
      </div>
    </height-transition>
  </main>
</template>

<script>
import HeightTransition from '@yvany/height-transition'

export default {
  el: '#app',
  components: { HeightTransition },

  data: () => ({
    show: true
  }),

  methods: {
    toggle() {
      this.show = !this.show
    }
  }
}
</script>

<style src="@yvany/height-transition/dist/style.css"></style>
```

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