Skip to content

v2.3.0

Compare
Choose a tag to compare
@meteorlxy meteorlxy released this 21 Dec 13:05

Release v2.3.0 πŸŽ‰

Breaking changes

  • We do not bundle showdown itself into vue-showdown any more, so in browser, you have to introduce showdown separately (no influence when installed by npm/yarn):
// before
<script src="https://unpkg.com/vue@2.5.21/dist/vue.min.js"></script>
<script src="https://unpkg.com/vue-showdown@2.2.2/dist/vue-showdown.min.js"></script>

// after
<script src="https://unpkg.com/vue@2.5.21/dist/vue.min.js"></script>
<script src="https://unpkg.com/showdown@1.9.0/dist/showdown.min.js"></script>
<script src="https://unpkg.com/vue-showdown@2.3.0/dist/vue-showdown.min.js"></script>

Features

  • Do not bundle showdown any more, so the dist files size will be only ~6KB (min ~2KB)
  • Add types declaration