Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Releases: mhayes/vue-twentytwenty

Version 0.10.1

26 May 14:54
Compare
Choose a tag to compare
  • Brings back CSS extraction. This was causing issues with SSR apps since document was not defined. #13

The biggest change here is that you'll need to include the CSS file when using this component, i.e.

<template>
  <TwentyTwenty
    before="//placehold.it/600x200/E8117F/FFFFFF"
    after="//placehold.it/600x200/CCCCCC/FFFFFF" />
</template>

<script>
// NEW: Include the CSS file
import 'vue-twentytwenty/dist/vue-twentytwenty.css';
import TwentyTwenty from 'vue-twentytwenty';

export default {
  components: {
    TwentyTwenty
  }
};
</script>

Version 0.9.0

26 May 03:30
Compare
Choose a tag to compare

Version 0.6.2

12 Dec 22:43
Compare
Choose a tag to compare
  • Includes overlay fix from #6

Version 0.5.0

16 Nov 03:22
Compare
Choose a tag to compare

Version 0.1.0

21 Jan 23:12
Compare
Choose a tag to compare
Version 0.1.0 Pre-release
Pre-release

First working beta release

Version 0.0.1

21 Jan 22:55
Compare
Choose a tag to compare
Version 0.0.1 Pre-release
Pre-release
use vue syntax on readme